forked from codeforamerica/srtracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfiguration.py.example
More file actions
32 lines (26 loc) · 824 Bytes
/
configuration.py.example
File metadata and controls
32 lines (26 loc) · 824 Bytes
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
# SR TRACKER
DEBUG = True
SECRET_KEY = 'please_please_change_this!'
PASSWORD_PROTECTED = False
PASSWORD = ''
MAX_RECENT_SRS = 50
SRS_PAGE_SIZE = 50
RECENT_SRS_TIME = 60 * 60 # (in seconds)
GOOGLE_ANALYTICS_ACCOUNT = ''
# SHARED
OPEN311_SERVER = 'http://localhost:5000/api'
OPEN311_API_KEY = ''
# UPDATER
OPEN311_PAGE_SIZE = 1000
DB_STRING = 'postgresql://localhost:5432/srtracker'
THREADED_UPDATES = False
EMAIL_HOST = 'smtp.example.com'
EMAIL_PORT = 465
EMAIL_USER = 'test@example.com'
EMAIL_PASS = ''
EMAIL_FROM = 'test@example.com'
EMAIL_SSL = True
EMAIL_MAX_THREADS = 5
SRTRACKER_URL = 'http://localhost:5000/'
# SYNDICATION
ATOM_SIZE = 25