Spaces:
Running
Running
| 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") | |