ClaraSeguros / server.py
MarianaCodebase's picture
Upload 9 files
66e9b6f verified
Raw
History Blame
273 Bytes
"""Punto de entrada: python server.py"""
import uvicorn
from app.config import settings
if __name__ == "__main__":
uvicorn.run(
"app.main:app",
host="0.0.0.0",
port=settings.PORT,
reload=not settings.is_production,
)