-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanage.py
More file actions
39 lines (29 loc) · 814 Bytes
/
manage.py
File metadata and controls
39 lines (29 loc) · 814 Bytes
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
from app import create_app,db
from flask_script import Manager,Server
# Connect to models
from app.models import User
# Set up migrations
from flask_migrate import Migrate,MigrateCommand
# Creating app instance
# app = create_app('test')
app = create_app('development')
# app = create_app('production')
# Create manager instance
manager = Manager(app)
# Create migrate instance
migrate = Migrate(app,db)
manager.add_command('server',Server)
manager.add_command('db',MigrateCommand)
@manager.command
def test():
'''
Run the unit tests
'''
import unittest
tests = unittest.TestLoader().discover('tests')
unittest.TextTestRunner(verbosity=2).run(tests)
@manager.shell
def make_shell_context():
return dict( app=app, db=db, User=User)
if __name__ == '__main__':
manager.run()