net/.env.prod-sample

24 lines
458 B
Text
Raw Normal View History

2022-02-03 23:46:54 +02:00
FLASK_ENV=production
2022-02-03 23:49:05 +02:00
FLASK_APP=forest/__init__.py
2022-02-03 23:46:54 +02:00
APP_FOLDER=/home/app/web
2022-02-05 17:45:24 +02:00
SECRET_KEY=1dff602d522785d27d5bc203
2022-02-03 23:46:54 +02:00
SQL_HOST=db
SQL_PORT=5432
DATABASE=postgres
POSTGRES_USER=forest
POSTGRES_PASSWORD=forest123
POSTGRES_DB=forest_prod
DATABASE_URL=postgresql://forest:forest123@db:5432/forest_prod
2022-02-05 05:11:16 +02:00
MAIL_ADMIN=daniel@deflax.net
MAIL_SUBJECT_PREFIX=ForestNet
2022-02-05 03:00:20 +00:00
MAIL_SERVER=smtp.gmail.com
MAIL_USERNAME=admin@gmail.com
MAIL_PASSWORD=kur
MAIL_PORT=25
2022-02-05 17:45:24 +02:00
MAIL_USE_TLS=1