forked from Kotti/Kotti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.ini
53 lines (38 loc) · 1.41 KB
/
app.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
# Documentation for this file is available at:
# kotti.readthedocs.org/en/latest/index.html#configuration-and-customization
[app:kotti]
use = egg:kotti
# kotti.site_title: your site's title
kotti.site_title = Yet another Kotti site
# kotti.secret: defines the initial password of the 'admin' user
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.db
# mail.default_sender: configure the 'from' address of emails sent by Kotti
mail.default_sender = yourname@yourhost
# kotti.configurators: another hook for add-ons
# kotti_tinymce should always be present (unless you don't want WYSIWYG editing)
kotti.configurators =
# kotti_tinymce is optional in Kotti 2.x
# kotti_tinymce.kotti_configure
# kotti_image was part of kotti in 1.x.
# install with pip and add it to kotti.configurators:
# kotti_image.kotti_configure
# kotti.asset_overrides: override Kotti's templates and resources; an example:
# kotti.asset_overrides = mypackage:kotti-overrides/
# pyramid.default_locale_name: set the user interface language
pyramid.default_locale_name = en
pyramid.includes =
pyramid_tm
# pyramid_debugtoolbar
[filter:fanstatic]
use = egg:fanstatic#fanstatic
[pipeline:main]
pipeline =
fanstatic
kotti
[server:main]
use = egg:waitress#main
host = 127.0.0.1
port = 5000