-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathmanage.py
52 lines (38 loc) · 1.32 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
45
46
47
48
49
50
51
52
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# __author__ = 'adison'
# @Time : 2017/11/21
import os
from app import create_app, db
from app.models import User, Article, Source, Category, Tag, Comment, Role, Permission
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)
app.jinja_env.globals['Category'] = Category
app.jinja_env.globals['Source'] = Source
app.jinja_env.globals['Article'] = Article
app.jinja_env.globals['Comment'] = Comment
def make_shell_context():
return dict(app=app, db=db, User=User, Role=Role, Article=Article, Comment=Comment, Source=Source,
Category=Category, Tag=Tag)
manager.add_command("shell", Shell(make_context=make_shell_context))
manager.add_command('db', MigrateCommand)
manager.add_command('runserver', Server(use_debugger=True))
@manager.command
def test():
# 运行单元测试
import unittest
tests = unittest.TestLoader().discover('tests')
unittest.TextTestRunner(verbosity=2).run(tests)
@manager.command
def deploy():
"""Run deployment tasks."""
# 插入角色
Role.insert_roles()
# 插入管理员
User.insert_admin()
if __name__ == '__main__':
manager.run()