-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
65 lines (53 loc) · 1.35 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# NOTE If you add to this file make sure to update deploy/testing/.env
# accordingly.
#
# NOTE for docker to use the values in this file you have to run your docker
# command in this directory (the directory with this .env file). The makefile
# takes care of that for you.
#
# Set the mode for the server to run in
# Either "development" or "production".
ENV_MODE=
# The server will listen at this port.
PORT=
DOMAIN=
# The connection settings to the database
DB_HOST=
DB_NAME=
DB_USER=
DB_PASSWORD=
DB_OPTIONS=
# Where we keep web assets
WEB_PATH=
# Where we keep templates for web pages and emails
TEMPLATES_PATH=
# The issuer of the JWTs
JWT_ISSUER=
# The key used to sign our JWTs. Make sure this is always private and random
JWT_SIGNING_KEY=
# Name of cookie that holds the JWT
JWT_COOKIE_NAME=
# Used by let's encrypt/acme
TRAEFIK_EMAIL=
MAILGUN_ADDRESS=
MAILGUN_DOMAIN=
MAILGUN_API_KEY=
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
# Name of bucket resumes are stored in
S3_BUCKET_RESUMES=
# Name of bucket static files are stored in
S3_BUCKET_STATIC=
# Used to serve our assets in prod
CLOUDFRONT_DISTRIBUTION_ID=
CLOUDFRONT_URL=
# Session settings
SESSION_COOKIE_NAME=
SESSION_SECRET=
# Defines what functionality is available (and theme where relevant)
# 1 - Offseason
# 2 - ApplicationsOpen
# 3 - ApplicationsClosed
# 4 - Live
# 5 - Postseason
APP_STATUS=