-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsettings.py
More file actions
29 lines (25 loc) · 830 Bytes
/
Copy pathsettings.py
File metadata and controls
29 lines (25 loc) · 830 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
# Settings for this app.
settings = dict(
# You MUST update the author, uin, and agree_to_honor_code fields before you
# turn this assignment in.
author = "Dilim Nwobu",
uin = '119-00-0493',
email = 'dilim.nwobu@gmail.com',
agree_to_honor_code = True,
# the collaborators list contains tuples of 2 items, the name of the helper
# and their contribution to your homework assignments
collaborators = {
('Dr. Caverlee','taught csce 470'),
},
# You probably don't need to mess with these settings.
http_host = 'localhost',
http_port = 8000,
mongo_host = 'localhost',
mongo_port = 27017,
)
try:
# pull in settings_local if it exists
from settings_local import settings as s
settings.update(s)
except ImportError:
pass