File size: 261 Bytes
61bb677
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import uvicorn
from free_claude_code.runtime.bootstrap import build_asgi_app
from free_claude_code.config.settings import Settings

app = build_asgi_app(Settings())
if __name__ == '__main__':
    uvicorn.run(app, host="127.0.0.1", port=8001, log_level="debug")