Files
Onyva-Postling/run_web.py
2026-02-03 12:48:43 +01:00

17 lines
339 B
Python

#!/usr/bin/env python3
"""Run the web frontend."""
import uvicorn
if __name__ == "__main__":
print("\n" + "=" * 50)
print(" LinkedIn Posts Dashboard")
print(" http://localhost:8000")
print("=" * 50 + "\n")
uvicorn.run(
"src.web.app:app",
host="0.0.0.0",
port=8000,
reload=True
)