Initial Commit

This commit is contained in:
2026-06-30 22:28:37 +03:00
commit a7d541a1cf
16 changed files with 833 additions and 0 deletions

9
run.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")"
HOST="${HOST:-0.0.0.0}"
PORT="${PORT:-8003}"
python3 dev_server.py --host "$HOST" --port "$PORT"