File size: 224 Bytes
3f3ebda
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from __future__ import annotations

import uvicorn


def main() -> None:
    uvicorn.run(
        "server.app:app",
        host="0.0.0.0",
        port=8000,
        ws_ping_interval=300,
        ws_ping_timeout=300,
    )