ogn-python/ogn_python.py

11 wiersze
221 B
Python

2019-09-12 20:53:42 +00:00
import os
2019-08-31 08:14:41 +00:00
2019-09-14 06:27:35 +00:00
from app import create_app, db, commands
2019-08-31 08:14:41 +00:00
2019-09-12 20:53:42 +00:00
app = create_app(os.getenv('FLASK_CONFIG') or 'default')
2019-09-14 06:27:35 +00:00
commands.register(app)
2019-09-12 20:53:42 +00:00
@app.shell_context_processor
def make_shell_context():
2019-09-14 06:27:35 +00:00
return dict(app=app, db=db)