radio/run_web.py
profit 3d635b742c Initial commit: self-hosted personal radio station
Flask + React web UI with audio player, podcast queue, feed management,
episode browser, music library, schedule viewer, and log tail.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 19:01:33 -07:00

12 lines
270 B
Python

"""Dev server entry point for the web UI."""
import sys
from pathlib import Path
# Ensure project root is on sys.path
sys.path.insert(0, str(Path(__file__).parent))
from web.app import app
if __name__ == "__main__":
app.run(host="0.0.0.0", port=5000, debug=True)