aktueller stand

This commit is contained in:
2026-02-03 12:48:43 +01:00
parent e1ecd1a38c
commit b50594dbfa
77 changed files with 19139 additions and 0 deletions

16
run_web.py Normal file
View File

@@ -0,0 +1,16 @@
#!/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
)