File size: 194 Bytes
c780f59
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import os 
import uvicorn 
from env_server import app

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


if __name__ == "__main__":
    main()