-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env.example
43 lines (29 loc) · 1.19 KB
/
.env.example
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
36
37
38
39
40
41
42
43
# --------------------------------------
# Supply environment variables below.
# See docs https://docs.collabocommunity.com/contribute/v/software-engineering/project-local-development-instructions/collabocate
# --------------------------------------
# Supply preferred port number for running backend server
PORT=
# GitHub API's base URL that preceeds GitHub URLs employed in our app
GITHUB_API_BASE_URL=https://api.github.com
# Supply Repo (GitHub API) URL
REPO_API_URL=
# Provide your GitHub Personal access token
GITHUB_PERSONAL_ACCESS_TOKEN=
# Supply full backend url to connect backend to client
BACKEND_URL=
# --------------------------------------
# Supply port for client's server (if needed)
CLIENT_APP_PORT=
# Supply full client URL (if needed)
CLIENT_APP_URL=
# --------------------------------------
MONGODB_ATLAS_URI=mongodb+srv://[user_name]:<enter_your_password>@[cluster_name].[code].mongodb.net/<enter_database_name>?retryWrites=true&w=majority
MONGODB_LOCAL_URI=
JWT_SECRET=just_random_value
JWT_LIFETIME=2m
GOOGLE_CLIENT_ID=just_random_value
GOOGLE_CLIENT_SECRET=just_random_value
GITHUB_CLIENT_ID=just_random_value
GITHUB_CLIENT_SECRET=just_random_value
DEFAULT_USER_PASSWORD=12345