File size: 197 Bytes
38e0dee |
1 2 3 4 5 6 7 8 |
import uvicorn
from blaxel import env
port = env["BL_SERVER_PORT"]
host = env["BL_SERVER_HOST"]
if __name__ == "__main__":
uvicorn.run("src.main:app", host=host, port=int(port), reload=False) |