-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdotcloud_settings.ini
72 lines (55 loc) · 1.53 KB
/
dotcloud_settings.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
[app:main]
use = egg:herokuapp
debugtoolbar.hosts = 0.0.0.0/0
pyramid.reload_templates = true
pyramid.debug_authorization = false
pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = true
pyramid.default_locale_name = en
pyramid.includes = pyramid_debugtoolbar ptah ptahcms ptahcrowd pyramid_sockjs
# sqlalchemy
sqlalchemy.url = sqlite:///%(here)s/db.sqlite
# ptah
ptah.auth = true
ptah.secret = secret-ptah!
ptah.manage = ptah-manage
ptah.managers = ["admin"]
ptah.manager_role = role:manager
ptah.disable_models = ["ptah-crowd-group", "ptah-crowd-user"]
auth.providers = ["google"]
auth.google_id = "923410751302-53eh8dngoc9sjtp4iv5sfgei6itcnvtm.apps.googleusercontent.com"
auth.google_secret = "zySoFX1Z8zB7617212N2-QLl"
ptahcrowd.admin-name = Ptah admin
ptahcrowd.admin-login = admin
ptahcrowd.admin-password = 12345
ptahcrowd.admin-role = role:manager
ptah.amd-spec = ["main:%(here)s/herokuapp/static/main.spec"]
ptah.amd-dir = %(here)s/herokuapp/static/
ptah.amd-enabled = true
[server:main]
use = egg:pyramid_sockjs#server
host = 0.0.0.0
port = %(http_port)s
# Begin logging configuration
[loggers]
keys = root, herokuapp
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = INFO
handlers = console
[logger_herokuapp]
level = DEBUG
handlers =
qualname = herokuapp
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
# End logging configuration