1 Star 0 Fork 0

砍柴的夏天/markbj

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
manage.py 622 Bytes
一键复制 编辑 原始数据 按行查看 历史
root 提交于 2017-04-28 22:37 . 马克笔记(http://www.markbj.com)
#coding:utf-8
import os
import sys
reload(sys)
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
sys.path.insert(0, os.path.join(BASE_DIR, "libs"))
from app import create_app,db
from flask_script import Manager, Shell
from flask_migrate import MigrateCommand
app = create_app(os.getenv('FLASK_CONFIG') or 'default')
manager = Manager(app)
def make_shell_context():
#使用shell命令时,存在的上下文数据
return dict(app=app, db = db)
manager.add_command("shell", Shell(make_context = make_shell_context))
manager.add_command("db", MigrateCommand)
if __name__ == "__main__":
manager.run()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/chaijun_lin/markbj.git
git@gitee.com:chaijun_lin/markbj.git
chaijun_lin
markbj
markbj
master

搜索帮助