代码拉取完成,页面将自动刷新
#!/usr/bin/env python3
# -*- coding: UTF-8 -*-
import os
import unittest
from app import create_app, db
from app.route import blueprint
from flask_cors import CORS
from flask_script import Manager
from flask_migrate import Migrate, MigrateCommand
# 获取环境变量
env = os.getenv('RUNTIME_ENV') or 'dev'
# 创建 app
app = create_app(env)
# 加载蓝图
app.register_blueprint(blueprint)
# 创建 manager
manager = Manager(app)
# 创建 migrate
migrate = Migrate(app, db)
# 新增 db 到 manager 中
manager.add_command('db', MigrateCommand)
# 跨域请求
CORS(app, supports_credentials=True)
@manager.command
def run():
""" runs user permission and auth service """
db.create_all()
app.run(debug=True, host='0.0.0.0', port=5000)
@manager.command
def create():
""" runs create db all data """
db.drop_all()
db.create_all()
db.session.commit()
@manager.command
def test():
""" runs the unit tests """
tests = unittest.TestLoader().discover('app/test', pattern='test*.py')
result = unittest.TextTestRunner(verbosity=2).run(tests)
if result.wasSuccessful():
return 0
return 1
if __name__ == '__main__':
manager.run()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。