feat: initial import (exclude templates and runtime temp files)

This commit is contained in:
237899745
2026-02-27 15:21:15 +08:00
commit 0951732c7a
33 changed files with 11698 additions and 0 deletions

15
app/Makefile Normal file
View File

@@ -0,0 +1,15 @@
.PHONY: lint test smoke check
lint:
node --check static/app.js
node --check static/js/core/state.js
node --check static/js/main.js
python3 -m py_compile server.py api_get_routes.py api_post_routes.py services/workflows.py services/post_ops.py repositories/history_repository.py wechat_bot_bridge.py
test:
python3 -m unittest discover -s tests -v
smoke:
bash scripts/smoke_api.sh
check: lint test smoke