1 Star 1 Fork 1

besonn/ha-monitor

forked from openEuler/ha-monitor 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
manager.py 637 Bytes
一键复制 编辑 原始数据 按行查看 历史
besonn 提交于 2023-10-31 12:55 . first commit
from flask_migrate import Migrate, MigrateCommand
from flask_script import Manager
from com.application import create_app
from com.model import *
app = create_app(__name__)
manager = Manager(app)
migrate = Migrate(app, db)
manager.add_command('db', MigrateCommand)
def add_statement():
p = Statements(statement='pcs status', description='查询集群状态')
db.session.add(p)
db.session.commit()
print('添加一条数据')
@manager.shell
def myshell():
return dict(
app=app,
db=db,
Statements=Statements,
add_statement=add_statement
)
if __name__ == '__main__':
manager.run()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/besonn/ha-monitor.git
git@gitee.com:besonn/ha-monitor.git
besonn
ha-monitor
ha-monitor
master

搜索帮助