Skip to content

Commit

Permalink
FastAPI 依赖库同步升级,官方升级版本文档:https://fastapi.tiangolo.com/release-notes/,…
Browse files Browse the repository at this point in the history
  • Loading branch information
ktianc committed Oct 17, 2023
1 parent 95a6ee9 commit 61e9a33
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion kinit-api/application/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"""
系统版本
"""
VERSION = "3.0.1"
VERSION = "3.0.2"

"""安全警告: 不要在生产中打开调试运行!"""
DEBUG = False
Expand Down
2 changes: 2 additions & 0 deletions kinit-api/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ def init_app(path: str):
"""
自动创建初始化 APP 结构
命令例子:python main.py init-app vadmin/test
:params path: app 路径,根目录为apps,填写apps后面路径即可,例子:vadmin/auth
"""
print(f"开始创建并初始化 {path} APP")
Expand Down
Binary file modified kinit-api/requirements.txt
Binary file not shown.
5 changes: 0 additions & 5 deletions kinit-api/scripts/create_app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,3 @@ def __get_template(self, name: str) -> str:
template.close()
return content


if __name__ == '__main__':
app = CreateApp("test/vv")
app.run()

0 comments on commit 61e9a33

Please sign in to comment.