初次提交项目

This commit is contained in:
2026-03-08 00:52:03 +08:00
parent 8241dbc861
commit fc38b1eb3d
9 changed files with 608 additions and 0 deletions

7
init_db.py Normal file
View File

@@ -0,0 +1,7 @@
from app import app, bootstrap
if __name__ == "__main__":
with app.app_context():
bootstrap()
print("数据库初始化完成: data/inventory.db")