File size: 183 Bytes
db4fa53
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from __future__ import annotations

import os

import uvicorn


def main() -> None:
    port = int(os.getenv("PORT", "7860"))
    uvicorn.run("server:app", host="0.0.0.0", port=port)