-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment_file_template
41 lines (29 loc) · 1.19 KB
/
environment_file_template
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
DEMO_MODE_ACTIVE=false
SIGNUP_LICENSING_KEY=coryisthebest
# Set to empty strings after the equal sign if not requiring a queue licensing key (recommended to have a key)
QUEUE_SIGNUP_KEY=""
# Set to empty strings after the equal sign if not enabling email functionality
SMTP_SERVER_HOST=smtp.gmail.com
SMTP_USER_LOGIN=
SMTP_USER_PASSWORD=
SMTP_USER_EMAIL=
POSTGRES_HOST=127.0.0.1
POSTGRES_PORT=6500
POSTGRES_USER=
POSTGRES_PASSWORD=
POSTGRES_DB=dancertest_db
PGADMIN_DEFAULT_PASSWORD=
DATABASE_URL=postgresql://user:pw@postgres:5432/dancertest_db?schema=public
SERVER_PORT=8000 # The port on which the server will start within the docker container
DOCKER_PORT_MAPPING=7000 # the externally available port which will be mapped inside the server container to the server port
CLIENT_ORIGIN=http://localhost:3000
REDIS_URL=redis://redis:6379/
ACCESS_TOKEN_PRIVATE_KEY= put an RSA 256 key pair b64 encoded --> include the --- begin key here --- part
ACCESS_TOKEN_PUBLIC_KEY=
ACCESS_TOKEN_EXPIRED_IN=120m
ACCESS_TOKEN_MAXAGE=120
REFRESH_TOKEN_PRIVATE_KEY= put an RSA 256 key pair b64 encoded
REFRESH_TOKEN_PUBLIC_KEY=
REFRESH_TOKEN_EXPIRED_IN=180m
REFRESH_TOKEN_MAXAGE=180