forked from oppian/anadusis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings_template.py
28 lines (22 loc) · 994 Bytes
/
settings_template.py
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
"""
Settings file to use in deployments. Is a template that will have it's values filled in by build server.
"""
DEBUG = $DEBUG
TEMPLATE_DEBUG = DEBUG
DATABASE_ENGINE = 'postgresql_psycopg2' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
DATABASE_NAME = '$DB_NAME' # Or path to database file if using sqlite3.
DATABASE_USER = '$DB_USER' # Not used with sqlite3.
DATABASE_PASSWORD = '$DB_PASS' # Not used with sqlite3.
DATABASE_HOST = '$DB_HOST' # Set to empty string for localhost. Not used with sqlite3.
DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3.
# google analytics
URCHIN_ID = "UA-11393857-1"
ADMINS = (
('Stephen Hartley', '[email protected]'),
('Matthew Jacobi', '[email protected]'),
('Lighthouse', '[email protected]'),
)
# Default admin account and pass
# admin:dewnwerd7
MANAGERS = ADMINS
SITE_DOMAIN = "$SITE_DOMAIN"