This commit is contained in:
2026-03-03 17:20:29 +08:00
commit 0f8513c7ad
25 changed files with 11922 additions and 0 deletions

13
run_server.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
# Run the Flask web server for the episode viewer
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "$SCRIPT_DIR"
echo "Starting Episode Web Viewer..."
echo "Open http://localhost:5000 in your browser"
echo "Press Ctrl+C to stop"
echo ""
uv run flask --app webapp/app run --host=0.0.0.0 --port=5000