7 lines
188 B
Python
7 lines
188 B
Python
import uvicorn
|
|
|
|
from src.app import app
|
|
|
|
if __name__ == "__main__":
|
|
# Run the app with reload and pass app as string
|
|
uvicorn.run("main:app", host="0.0.0.0", port=8000, reload=True) |