From 5e63a5034b841b90b8a8b2b5bc39cbb088e9803d Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Sat, 23 Jul 2011 18:45:40 +0200 Subject: Split the logic into different python modules: * web.py contains the controllers (also called views) + url definitions * models.py contains the models * forms.py contains the forms * utils.py contains a set of utility fonctions to ease the dev. process --- budget/default_settings.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 budget/default_settings.py (limited to 'budget/default_settings.py') diff --git a/budget/default_settings.py b/budget/default_settings.py new file mode 100644 index 0000000..208f859 --- /dev/null +++ b/budget/default_settings.py @@ -0,0 +1,4 @@ +DEBUG = True +SQLALCHEMY_DATABASE_URI = 'sqlite:///budget.db' +SQLACHEMY_ECHO = DEBUG +SECRET_KEY = "tralala" -- cgit v1.1