forked from Cal-CS-61A-Staff/seating
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.sample
54 lines (48 loc) · 1.75 KB
/
.env.sample
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
44
45
46
47
48
49
50
51
52
53
54
# env var required by flask framework. Value must be server
FLASK_APP=server
# env flag. available values: development, production, testing
FLASK_ENV=development
# where the server is hosted. Put base url here
SERVER_BASE_URL=http://localhost:5000/
# where the app wiki is hosted. Put base url here
WIKI_BASE_URL=https://github.com/berkeley-cdss/seating/wiki/
# database url. In dev mode this is ignored and sqlite is used
DATABASE_URL=
# secret key for flask app. In dev mode this is ignored and a default value is used
# must generate a random flask secret key for production!
SECRET_KEY=
# server timezone; not used yet
LOCAL_TIMEZONE=US/Pacific
# whether to use mock canvas api
MOCK_CANVAS=false
# canvas server url, client id and secret, get them from school LTI team
CANVAS_SERVER_URL=
CANVAS_CLIENT_ID=
CANVAS_CLIENT_SECRET=
# gcp service account credentials
# available vaGCP_SA_CRED_TYPE values: env, file
# if GCP_SA_CRED_TYPE is env, put the encoded cred value in GCP_SA_CRED_VALUE
# if GCP_SA_CRED_TYPE is file, put the cred file full path in GCP_SA_CRED_FILE
GCP_SA_CRED_TYPE=file
GCP_SA_CRED_FILE=gcp-service-account-credentials.json
GCP_SA_CRED_VALUE=""
# url for the master room sheet
# this pre-filled value should be the latest version of the sheet
MASTER_ROOM_SHEET_URL="https://docs.google.com/spreadsheets/d/16a1uZJl54A5_J2XpyzIBblH7LPlFCKc5Cx86CFTbZTA/edit?usp=sharing"
# smtp server configs, for sending emails
EMAIL_SERVER=
EMAIL_PORT=
EMAIL_USE_TLS=
EMAIL_USERNAME=
# Cal1Card API URL
MOCK_C1C=false
C1C_API_DOMAIN=
C1C_API_USERNAME=
C1C_API_PASSWORD=
# if using a proxy to access c1c, set the proxy URL here
C1C_PROXY_URL=
# in seconds, how long to cache c1c photos
C1C_PHOTO_CACHE_LIFE=7776000
# codecov token
# not needed if not using codecov
CODECOV_TOKEN=