forked from Studentsforward/design2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanage.py
31 lines (23 loc) · 818 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
import os
from app import create_app, db
from flask_script import Manager, Shell
from flask_migrate import Migrate, MigrateCommand
from app import create_app, db
from app.models import User
# app.config.from_object(os.environ['APP_SETTINGS'])
print("HERE: ", os.environ.get('APP_SETTINGS'))
app = create_app(os.environ.get('APP_SETTINGS') or 'default')
migrate = Migrate(app, db)
manager = Manager(app)
def make_shell_context():
return dict(app=app, db=db, User=User)
@manager.command
def test():
"""Run the unit tests"""
import unittest
tests = unittest.TestLoader().discover('tests')
unittest.TextTestRunner(verbosity=2).run(tests)
manager.add_command('shell', Shell(make_context=make_shell_context))
manager.add_command('db', MigrateCommand)
if __name__ == '__main__':
manager.run()