-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanage.py
34 lines (23 loc) · 912 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
import unittest
from app import create_app, db
from flask_script import Manager, Server
from flask_migrate import Migrate, MigrateCommand
from app.models import County, Constituency, Party, MCA, Governor, DeputyGovernor, Senator, WomanRep, User
app = create_app('development')
# app = create_app('production')
manager = Manager(app)
manager.add_command('server', Server)
migrate = Migrate(app, db)
manager.add_command('db', MigrateCommand)
# @manager.command
# def test():
# '''
# run unittests
# '''
# 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, County=County, Constituency=Constituency, Party=Party, MCA=MCA, Governor=Governor, Senator=Senator, DeputyGovernor=DeputyGovernor, WomanRep=WomanRep)
if __name__ == '__main__':
manager.run()