7 lines
182 B
Python
7 lines
182 B
Python
import uvicorn
|
|
|
|
from app.config import get_settings
|
|
|
|
if __name__ == "__main__":
|
|
s = get_settings()
|
|
uvicorn.run("app.main:app", host=s.host, port=s.port, log_level="warning")
|