-
Notifications
You must be signed in to change notification settings - Fork 4
/
development.ini
89 lines (75 loc) · 2.1 KB
/
development.ini
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
###
# app configuration
# https://docs.pylonsproject.org/projects/pyramid/en/1.10-branch/narr/environment.html
# so I cannot get postgres to work on windows.
###
[app:main]
use = egg:michelanglo_app
pyramid.reload_templates = true
pyramid.debug_authorization = false
pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.default_locale_name = en
# pyramid.includes = pyramid_debugtoolbar
# debugtoolbar.panels = headers logging performance renderings request_vars sqlalchemy traceback
sqlalchemy.url = sqlite:///demo.db
# previously the environmental variable overides where in app.py, now they are in env_override
# sqlalchemy.url = %(SQL_URL)s
michelanglo.user_data_folder = ../user-data
michelanglo.protein_data_folder = ../protein-data
michelanglo.secretcode = error
michelanglo.admin_email =
michelanglo.server_email =
sentry.data_source_name =
slack.webhook =
# this is not okay for production -- change plz
puppeteer.executablepath = /bin/chromium-browser
###
#
# postgresql:///pyramidtest
###
retry.attempts = 3
auth.secret = TIMbarrel
scheduler.days_delete_unedited = 30
scheduler.days_delete_untouched = 365
###
# wsgi server configuration.
###
[server:main]
use = egg:waitress#main
listen = 0.0.0.0:8088
### remember to change this to localhost when off Wellcome PC.
[alembic]
# path to migration scripts
script_location = michelanglo_app/alembic
file_template = %%(year)d%%(month).2d%%(day).2d_%%(rev)s
# file_template = %%(rev)s_%%(slug)s
###
# logging configuration
# https://docs.pylonsproject.org/projects/pyramid/en/1.10-branch/narr/logging.html
###
[loggers]
keys = root, michelanglo_app
[handler_filelog]
class = FileHandler
args = ('%(here)s/michelanglo.log','a')
level = INFO
formatter = generic
[handlers]
keys = console, filelog
[formatters]
keys = generic
[logger_root]
level = DEBUG
handlers = console, filelog
[logger_michelanglo_app]
level = DEBUG
handlers =
qualname = michelanglo_app
[handler_console]
class = StreamHandler
args = (sys.stdout,)
level = DEBUG
formatter = generic
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s:%(lineno)s][%(threadName)s] %(message)s