Skip to content

Commit 23c7a67

Browse files
committed
Added readme for using webui.sh
1 parent d53644e commit 23c7a67

File tree

2 files changed

+49
-1
lines changed

2 files changed

+49
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
22
/coverage
3-
/lib
3+
/lib
4+
/build

README.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,53 @@ Read more about the project details at [good2be.me](http://good2be.me/blog)
2828
### Creating config
2929
![New Config](screenshots/newRemote.png)
3030

31+
## Get the automated script and get running
32+
33+
**Bash users:**
34+
35+
Download the sh file given here:
36+
[webui.sh](https://raw.githubusercontent.com/negative0/rclone-webui-react/master/package.json)
37+
38+
Copy the file to root folder of rclone.
39+
40+
```
41+
cp webui.sh <root-of-rclone>/
42+
```
43+
First of all open the webui.sh
44+
45+
You need to edit this code to the username and password you would like to use.
46+
```
47+
username='<your-username>'
48+
password='<your-password>'
49+
```
50+
Save this file.
51+
52+
Now you can run the following commands:
53+
54+
- Download the project:
55+
```
56+
./webui.sh get
57+
```
58+
59+
- Build the webui app:
60+
```
61+
./webui.sh build
62+
```
63+
64+
- Run the app with rclone backend:
65+
```
66+
./webui.sh run
67+
```
68+
69+
- At any point, you can update the webui with new changes from the repo (optional):
70+
71+
```
72+
./webui.sh update
73+
```
74+
75+
76+
**Windows:**
77+
Coming soon
3178

3279
### Get the Project
3380
```

0 commit comments

Comments
 (0)