This is a reactjs based web UI for the rclone cli project @ Rclone Website
This project can be unstable and is being actively developed. Feel free to create any issues, feature requests or enhancements as you encounter them.
The project currently requires you to install and configure react and npm to run correctly. Read more about the project details at good2be.me
git clone https://github.com/negative0/rclone-webui-react
OR download a zip from the option above.
If you are using NPM:
Make sure that you are using the latest LTS version of NPM
cd <cloned directory>
npm install
Using yarn:
cd <cloned directory>
yarn install
npm start
OR
npm run start
npm testOR yarn test if you want to run all jest tests.
Test specific environment can be set using setupTests.js
With Coverage: npm run test:cov
You have to run rclone with the following flags:
rclone rcd --rc-user=<username> --rc-pass=<password> --rc-serve
Replace username and password with your custom username password. This will be required to login to rclone. rc-no-auth is not available due to security concerns.
--rc-serve: It serves the remote objects at localhost:5572/[remoteName:remotePath]/path/to/file. It enables us to download files via the RemoteExplorer through the browser.
For the progress and future implementation details please refer Progress.md



