blob: 8c944e467e3cf72b3f45553488109539b6008cdf (
plain)
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
|
#
# yt-local options
#
WEB_SITE_URL='http://example.org'
APP_DEBUG=True
SECRET_KEY=2q75bebg(9fn4ldkc7&*155kwp14donetc)p5-vut1hvlh&e%-
#
# DataBase
#
NAME_DB=personalsite
USER_DB=postgres
PASS_DB=postgres
HOST_DB=172.23.0.5
PORT_DB=5432
#
# E-mail options
#
# Incoming Email
EMAIL_FROM=noreply@example.com
EMAIL_TO=user@example.com
EMAIL_HOST=smtp.example.com
EMAIL_HOST_USER=username
EMAIL_HOST_PASSWORD=password
EMAIL_HOST_PORT=587
EMAIL_USE_TLS=True
#
# Gunicorn options
#
GUNICORN_PORT_NUMBER=8080
GUNICORN_NUM_WORKERS=4
GUNICORN_TIMEOUT=120
|