From 65c5b1877fd9946c784aab9fcf00ac711c180c5d Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Thu, 23 Apr 2020 11:02:07 +0200 Subject: [PATCH] prefilled production.ini as template --- production.ini => production.ini.template | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) rename production.ini => production.ini.template (79%) diff --git a/production.ini b/production.ini.template similarity index 79% rename from production.ini rename to production.ini.template index 93c0663..5763191 100644 --- a/production.ini +++ b/production.ini.template @@ -11,14 +11,30 @@ pyramid.debug_authorization = false pyramid.debug_notfound = false pyramid.debug_routematch = false pyramid.default_locale_name = en +pyramid.includes = + pyramid_mailer sqlalchemy.url = sqlite:///%(here)s/ordr3.sqlite retry.attempts = 3 +auth.secret = "change me for production" + session.secret = "change me for production" session.auto_csrf = true +static_views.cache_max_age = 0 + +# email delivery +mail.host = localhost +mail.port = 2525 +mail.default_sender = ordr@example.com + + +# By default, the toolbar only appears for clients from IP addresses +# '127.0.0.1' and '::1'. +# debugtoolbar.hosts = 127.0.0.1 ::1 + [pshell] setup = ordr3.pshell.setup