-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmanage.py
executable file
·39 lines (29 loc) · 891 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
35
36
37
38
39
#!/usr/bin/env python
#coding:utf-8
import os
from flask import current_app
from flask_migrate import Migrate, MigrateCommand
from flask_script import Manager, Shell
from app import create_app, db
from app.common.functions import dd_push
from datas.model.cron_infos import CronInfos
from datas.model.job_log import JobLog
from datas.model.job_log_items import JobLogItems
app = create_app(os.getenv('FLASK_CONFIG') or 'default')
manager = Manager(app)
migrate = Migrate(app, db)
def make_shell_context():
return dict(
app=app,
JobLog=JobLog,
CronInfos=CronInfos,
JobLogItems=JobLogItems
)
manager.add_command("shell", Shell(make_context=make_shell_context))
manager.add_command('db', MigrateCommand)
@manager.command
def test():
pass
if __name__ == '__main__':
#gunicorn -b 127.0.0.1:5000 -w 1 -k gevent manage:app
manager.run()