File tree Expand file tree Collapse file tree 2 files changed +49
-1
lines changed Expand file tree Collapse file tree 2 files changed +49
-1
lines changed Original file line number Diff line number Diff line change 1
1
node_modules
2
2
/coverage
3
- /lib
3
+ /lib
4
+ /build
Original file line number Diff line number Diff line change @@ -28,6 +28,53 @@ Read more about the project details at [good2be.me](http://good2be.me/blog)
28
28
### Creating config
29
29
![ New Config] ( screenshots/newRemote.png )
30
30
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
31
78
32
79
### Get the Project
33
80
```
You can’t perform that action at this time.
0 commit comments