初始提交

This commit is contained in:
fanbook-wangdage
2025-12-28 17:01:42 +08:00
parent 3cace74c08
commit d67e42b067
20 changed files with 1284 additions and 0 deletions

12
app.py Normal file
View File

@@ -0,0 +1,12 @@
from app.init import create_app
from app.config_loader import config_loader
# 创建应用实例
app = create_app()
if __name__ == '__main__':
app.run(
host=config_loader.SERVER_HOST,
port=config_loader.SERVER_PORT,
debug=config_loader.SERVER_DEBUG
)