1 Star 0 Fork 5

zhang_name/testlib

forked from anolis/testlib 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
app.py 572 Bytes
一键复制 编辑 原始数据 按行查看 历史
# -*- coding: utf-8 -*-
# -------------------------------------
# @ Author: 杨攀飞
# @ E-mail: yangpanfei@ceprei.com
# @ Create Time: 2022-06-01
# @ Update Time: 2022-08-23
# -------------------------------------
from sanic import Sanic
from app import init_app
if __name__ == '__main__':
app = Sanic('testlib')
app.static('/static', 'dist')
init_app(app)
app.run(app.config['HOST'], app.config['PORT'], debug=app.config['DEBUG'], access_log=app.config['ACCESS_LOG'],
workers=app.config['WORKERS'], auto_reload=app.config['AUTO_RELOAD'])
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhang_name/testlib.git
git@gitee.com:zhang_name/testlib.git
zhang_name
testlib
testlib
master

搜索帮助