-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanage.py
44 lines (32 loc) · 1.08 KB
/
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
43
44
#!/usr/bin/env python
import os
from app import create_app, db
from app.model import User, Role, Permission, Post, Follow, Comment
from flask_script import Manager, Shell, Server
from flask_migrate import Migrate, MigrateCommand
app = create_app(os.getenv('FLASK_CONFIG') or 'default')
manager = Manager(app)
migrate = Migrate(app, db)
#
#
# @manager.command
# def test():
# """Run the unit tests."""
# import unittest
# tests = unittest.TestLoader().discover('tests')
# unittest.TextTestRunner(verbosity=2).run(tests)
#
#
def make_shell_context():
return dict(db=db, User=User, Role=Role, Permission=Permission, Post=Post, Follow=Follow, Comment=Comment)
@app.cli.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("runserver", Server(use_debugger=True, host='0.0.0.0'))
manager.add_command('db', MigrateCommand)
if __name__ == '__main__':
manager.run()