2021-10-30 11:32:35 +02:00
# Rclone WebUI
2021-10-28 10:32:37 +02:00
2021-10-30 11:32:35 +02:00
## Description
A simple information panel showing you all you need to know about your Rclone instance.
### Features
- General stats from current rcd session
- View active running jobs and their transfers
- Browse the history of succesful transferred files
- View list of remotes
- View list of mounted remotes
- Darkmode (autodetect)
- View configured settings
- System info
2021-10-28 10:32:37 +02:00
2021-10-30 11:32:35 +02:00
#### What is Rclone
Rclone is a open source tool to transfer files from your local system to many types of cloud hosted storage. You can take a look at the project [here ](https://rclone.org/ )
2021-10-28 10:32:37 +02:00
2021-10-30 11:32:35 +02:00
#### Info about each Job
- Total job speed
- ETA for job and elapsed time
- Job total size and transferred size
- Speed for each file
- Size of each file
- ETA of each file
2021-10-28 10:32:37 +02:00
2021-10-30 11:32:35 +02:00
## Installation
Download package from [here]()
2021-10-28 10:32:37 +02:00
2021-10-30 11:32:35 +02:00
Place the contents in a folder and remember it's location, I like to use /webui because I will be running this in a docker container.
2021-10-28 10:32:37 +02:00
2021-10-30 11:32:35 +02:00
Start Rclone remote control server
```rclone rcd --rc-serve --rc-user <YOURUSER> --rc-pass <YOURPASS> /webui` ``
You can see the last argument is the folder where you placed the WebUI earlier. This is the same as specifying `--rc-files=/webui` . More documentation on rcd is available [here ](https://rclone.org/rc ).< br />
If you are on a headless machine you can add the argument `--rc-web-gui-no-open-browser` so Rclone won't try to open a browser.
2021-10-28 10:32:37 +02:00
2021-10-30 11:32:35 +02:00
## Screenshots
2021-10-28 10:32:37 +02:00
2021-10-30 11:32:35 +02:00
### Darkmode
< img src = "./screenshots/desktop-dark.png" / >
2021-10-28 10:32:37 +02:00
2021-10-30 11:32:35 +02:00
### Lightmode
< img src = "./screenshots/desktop-light.png" / >
2021-10-28 10:32:37 +02:00
2021-10-30 11:32:35 +02:00
### Mobile views
< img src = "./screenshots/iPhone-X-light.png" / >
< img src = "./screenshots/iPhone-X-dark.png" / >
2021-10-28 10:32:37 +02:00
2021-10-30 11:32:35 +02:00
## Building from source
2021-10-28 10:32:37 +02:00
2021-10-30 11:32:35 +02:00
#### Prerequisites
To build the site you are expected to have npm and nodejs installed and have a active internet connection.
2021-10-28 10:32:37 +02:00
2021-10-30 11:32:35 +02:00
#### Build
2021-10-28 10:32:37 +02:00
2021-10-30 11:32:35 +02:00
Get the source files
```
git clone https://github.com/controlol/rclone-webui
cd rclone-webui
```
2021-10-28 10:32:37 +02:00
2021-10-30 11:32:35 +02:00
Install dependencies
`npm ci`
2021-10-28 10:32:37 +02:00
2021-10-30 11:32:35 +02:00
Build the project
`npm run build`
2021-10-28 10:32:37 +02:00
2021-10-30 11:32:35 +02:00
The WebUI should have been build in the build folder. Copy the files to a location you can easily access or use the build directory as the source for your rclone rcd.