mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-28 17:32:38 +02:00
* 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
4 lines
107 B
Python
4 lines
107 B
Python
DEBUG = True
|
|
SQLALCHEMY_DATABASE_URI = 'sqlite:///budget.db'
|
|
SQLACHEMY_ECHO = DEBUG
|
|
SECRET_KEY = "tralala"
|