-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevelopment.ini
116 lines (80 loc) · 2.59 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# Documentation for this file is available at:
# kotti.readthedocs.org/en/latest/index.html#configuration-and-customization
[app:main]
use = egg:kotti
pyramid.reload_templates = true
pyramid.debug_templates = true
pyramid.debug_authorization = false
pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.includes =
pyramid_debugtoolbar
pyramid_tm
pyramid.default_locale_name = en
# KMS Definables
# NB: Change these
kotti.site_title = Your Company Here
kotti.site_tagLine = Your Company Tagline
kotti.contactEmail = [email protected]
kotti.contactPhone = 555.555.5555
# kotti.secret: defines the initial password of the 'admin' user
# NB: change this
kotti.secret = qwerty
# sqlalchemy.url: the database that you want to use, defaults to SQLite
# see http://www.sqlalchemy.org/docs/core/engines.html#database-urls
sqlalchemy.url = sqlite:///%(here)s/Kotti-dev.db
# mail.default_sender: configure the 'from' address of emails sent by Kotti
# NB: Change this
mail.default_sender = [email protected]
### Kotti Includes ###
## KMS Twitter ##
#pyramid.includes = kms_twitter.include_profile_widget
#kms_twitter.profile_widget.username = koansys
#kms_twitter.profile_widget.count = 5
#kms_twitter.profile_widget.rate_warning = To avoid struggling with Twitter's rate limit, we stop loading data after 10 API calls.
pyramid.includes = kotti_splashpage
# kms_twitter.include_profile_widget
## Kotti Analytics ##
# pyramid.includes = kotti_analytics.include_widget
## NB: Change this
# kotti_analytics.tracking_id = UA-XXXXXXX-X
## Kotti Solr ##
# kotti_solr.solr_url = http://localhost:8983/solr
### Kotti Configurators ###
## Kotti Calendar ##
# kotti.configurators = kotti_calendar
## Kotti Events ##
# kotti.configurators = kotti_events.kotti_configure
## Kotti Contact Form ##
# kotti.configurators = kotti_contactform.kotti_configure
## Kotti Image Gallary ##
# kotti.configurators = kotti_image_gallery.kotti_configure
### Kotti Resource Override ###
# pyramid.default_locale_name: set the user interface language
# pyramid.default_locale_name = en
[server:main]
use = egg:waitress#main
host = 127.0.0.1
port = 5000
# Begin logging configuration
[loggers]
keys = root, kotti_splashpage
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = INFO
handlers = console
[logger_kotti_splashpage]
level = DEBUG
handlers =
qualname = kotti_splashpage
[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