forked from philophilo/mrm_api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
19 lines (18 loc) · 824 Bytes
/
.env.example
File metadata and controls
19 lines (18 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
source [virtual_env_name]/bin/activate # setting virtual enviroment source.
export APP_SETTINGS="development" # set app Enviroment.
export SECRET_KEY="some-very-long-string-of-random-characters"
export DEV_DATABASE_URL="" # Db for Development.
export TEST_DATABASE_URL="" # Db for Testing
export DATABASE_URL="" # Db for Production
export API_KEY="" # Google API app Api key
export OOATH2_CLIENT_ID="" # Google API app ooath2_client_id
export OOATH2_CLIENT_SECRET="" # Google API app ooath2_client_secret
# email configuration
export MAIL_SERVER="smtp.gmail.com"
export MAIL_PORT="587"
export MAIL_USE_TLS=True
export MAIL_USERNAME=""
export MAIL_PASSWORD=""
export CELERY_BROKER_URL="redis://localhost:6379/0"
export CELERY_RESULT_BACKEND="redis://localhost:6379/0"
export DOMAIN_NAME="http://converge-staging.andela.com/"