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>
12 lines
270 B
Python
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)
|