mirror of
https://github.com/Jerryplusy/AI-powered-switches.git
synced 2025-07-04 21:29:18 +00:00
13 lines
244 B
Python
13 lines
244 B
Python
import uvicorn
|
|
from src.backend.app import create_app
|
|
|
|
app = create_app()
|
|
|
|
if __name__ == "__main__":
|
|
uvicorn.run(
|
|
"src.backend.app:app",
|
|
host="0.0.0.0",
|
|
port=8000,
|
|
log_level="info",
|
|
reload=True
|
|
) |