-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.env.example
36 lines (30 loc) · 974 Bytes
/
.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
# SECRET_KEY is passed to Flask.config
SECRET_KEY=flaskcon
ENV="development"
# The following are used for sending emails,
# see app/extensions/__init__.py & app/utilities/email_service.py
EMAIL_DEV_MODE=1
EMAIL_USERNAME=none
EMAIL_PASSWORD=none
EMAIL_SERVER=none
EMAIL_PORT=0
# The email address that all proposal correspondence should be discussed
# This email address will be used to to inform the submitter to contact this
# email address for any questions or concerns.
FLASKCON_EMAIL_ADDRESS=none
# Super admin account details that will be used in the CLI
# command 'flask seed'
SUPER_ADMIN_ACCOUNT=none
SUPER_ADMIN_PASSWORD=none
# Used to populate the docker.config.toml file when using
# a postgres Docker deployment.
POSTGRES_USER=postgres
POSTGRES_PASSWORD=none
POSTGRES_DB=flaskcon
POSTGRES_PORT=5432
POSTGRES_LOCATION=database
# Docker environment variables
FLASK_PORT=5000
# Used to send live tests
LIVE_TEST_EMAIL_ONE=none@n.n
LIVE_TEST_EMAIL_TWO=none@n.n