app.ini

Summary

Maintainability
Test Coverage
# 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