Files
resumeformatter/backend/main.py
2025-10-14 19:51:35 +05:30

9 lines
252 B
Python

import uvicorn
import os
if __name__ == "__main__":
# Use environment variables or default values
host = os.getenv("HOST", "0.0.0.0")
port = int(os.getenv("PORT", "8080"))
uvicorn.run("app.main:app", host=host, port=port, reload=True)