re-structure

This commit is contained in:
Yaojia Wang
2026-02-01 22:55:31 +01:00
parent 400b12a967
commit b602d0a340
176 changed files with 856 additions and 853 deletions

View File

@@ -0,0 +1,14 @@
#!/usr/bin/env python
"""
Quick start script for the web server.
Usage:
python run_server.py
python run_server.py --port 8080
python run_server.py --debug --reload
"""
from backend.cli.serve import main
if __name__ == "__main__":
main()