diff options
| author | Alexis Metaireau <alexis@notmyidea.org> | 2011-07-23 18:45:40 +0200 |
|---|---|---|
| committer | Alexis Metaireau <alexis@notmyidea.org> | 2011-07-23 18:45:40 +0200 |
| commit | 5e63a5034b841b90b8a8b2b5bc39cbb088e9803d (patch) | |
| tree | 82c43d068ec782abd31864e998f09782c9b67be3 /budget/default_settings.py | |
| parent | 4fcaf7d7ec583b794c14597d50abc89ef96450c9 (diff) | |
| download | ihatemoney-mirror-5e63a5034b841b90b8a8b2b5bc39cbb088e9803d.zip ihatemoney-mirror-5e63a5034b841b90b8a8b2b5bc39cbb088e9803d.tar.gz ihatemoney-mirror-5e63a5034b841b90b8a8b2b5bc39cbb088e9803d.tar.bz2 | |
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
Diffstat (limited to 'budget/default_settings.py')
| -rw-r--r-- | budget/default_settings.py | 4 |
1 files changed, 4 insertions, 0 deletions
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" |
