-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanage.py
42 lines (27 loc) · 916 Bytes
/
manage.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import os
from flask_script import Shell, Manager
from flask_migrate import Migrate, MigrateCommand
from flask_script import Shell, Manager
from flask_sqlalchemy import SQLAlchemy
from config import config
from app import create_app, db
from app.models import User, Categories, Recipes
"""make flask app instance with development configurations"""
dev = config['development']
app = create_app(dev)
manager = Manager(app)
db = SQLAlchemy(app)
migrate = Migrate(app, db)
def make_shell_context():
return dict(app=app, db=db, User=User, Recipes = Recipes,
Categories = Categories)
manager.add_command("shell", Shell(make_context=make_shell_context))
manager.add_command('db', MigrateCommand)
@manager.command
def test():
os.system("pytest --cov-report term --cov=app")
@manager.command
def debug_tests():
os.system("pytest --ipdb")
if __name__ == '__main__':
manager.run()