File size: 157 Bytes
0135a17
 
 
97ce507
c3fb458
0135a17
 
97ce507
1
2
3
4
5
6
7
8
9
import uvicorn
from bug_triage_env.server.app import app

def main():
    uvicorn.run(app, host="0.0.0.0", port=8000)

if __name__ == "__main__":
    main()