From 929833cc04e81a8586892d33a9d1bbbc38592ea4 Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Sun, 21 Aug 2011 21:21:52 +0200 Subject: [PATCH] put back stuff in the wrong place for now --- budget/web.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/budget/web.py b/budget/web.py index 59d7f30..39ffd1a 100644 --- a/budget/web.py +++ b/budget/web.py @@ -14,6 +14,15 @@ app = Flask(__name__) app.config.from_object("default_settings") mail = Mail() +# db +db.init_app(app) +db.app = app +db.create_all() + +# mail +mail.init_app(app) + + @app.url_defaults def add_project_id(endpoint, values): if 'project_id' in values or not hasattr(g, 'project'): @@ -243,14 +252,6 @@ def reset_bills(): def main(): - # db - db.init_app(app) - db.app = app - db.create_all() - - # mail - mail.init_app(app) - app.run(host="0.0.0.0", debug=True) if __name__ == '__main__':