-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
35 lines (31 loc) · 788 Bytes
/
.env.example
File metadata and controls
35 lines (31 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
### GITHUB ###
GITHUB_LOGIN=
GITHUB_TOKEN=
# Only exclude the portcol part when configuring this
#GHE_HOST=
### GITLAB ###
GITLAB_LOGIN=
GITLAB_TOKEN=
# Only exclude the portcol part when configuring this
#GITLAB_HOST=
### Git config ###
GIT_REPO=
GIT_USER_EMAIL=
GIT_USER_NAME=
### Web IDE stuff ###
USE_LINK=false
# Uncomment this line to set password manually.
# You must set GENERATE_PASSWORD to false.
#PASSWORD=
#HASHED_PASSWORD=
# Set this to false if you want to set passwords manually.
GENERATE_PASSWORD=true
START_DIR="/workspace/home"
### Rclone ###
RCLONE_DATA=
RCLONE_REMOTE_NAME=code-server-remote
RCLONE_SOURCE=$START_DIR
RCLONE_DESTINATION=code-server-folder
RCLONE_AUTO_PUSH=false
RCLONE_AUTO_PULL=false
RCLONE_FLAGS='--exclude "node_modules/**" --exclude ".git/**"'