aktueller stand
This commit is contained in:
16
run_web.py
Normal file
16
run_web.py
Normal 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
|
||||
)
|
||||
Reference in New Issue
Block a user