3 Star 38 Fork 8

馆主阿牛/基于flask+bootstrap+echarts+mysql的鱼村小馆订餐后台管理系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
manage.py 476 Bytes
一键复制 编辑 原始数据 按行查看 历史
馆主阿牛 提交于 2022-10-16 21:45 . first commit
from flask_script import Manager,Server
from flask_migrate import Migrate,MigrateCommand
from app import db,app
# 生成管理工具对象
manager = Manager(app)
# 添加服务器运行指令
manager.add_command("runserver",Server(host='0.0.0.0',use_debugger=True))
# 数据库迁移
Migrate(app,db)
# 添加数据库的操作指令
manager.add_command("db",MigrateCommand)
#如果是以此脚本作为主脚本程序,就执行
if __name__ == '__main__':
manager.run()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/aniu-666/eat-project.git
git@gitee.com:aniu-666/eat-project.git
aniu-666
eat-project
基于flask+bootstrap+echarts+mysql的鱼村小馆订餐后台管理系统
master

搜索帮助