From 870101c237cf75f6984df62a9fa6417c73542d1a Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Sun, 1 Apr 2012 20:35:32 +0200 Subject: [PATCH] add settings for epio --- budget/settings_epio.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 budget/settings_epio.py diff --git a/budget/settings_epio.py b/budget/settings_epio.py new file mode 100644 index 0000000..dbcb68a --- /dev/null +++ b/budget/settings_epio.py @@ -0,0 +1,12 @@ +from bundle_config import config + +SQLALCHEMY_DATABASE_URI = 'postgresql://%(username)s:%(password)s@%(host)s:%(port)s/%(database)s' % config['postgres'] +SECRET_KEY = "yosh" + +MAIL_SERVER = "yourhost" +MAIL_PORT = 110 +MAIL_USERNAME = 'foo' +MAIL_PASSWORD = 'bar' +MAIL_USE_TLS = True +SITE_URL = "http://ihatemoney.notmyidea.org" +DEBUG = True