Saif Ali Shaik —
I've tried deploying Archestra on render.com, but it turns out I cannot expose both :3000 or :9000 ports for admin UI and API access simultaneously. Is there a work around to this?
I watched the stream recording for Archestra, and it was actually great. By the way, what projects are you all working on?
/health api endpoint works. But if try to GET /api/organization I see:I'm using the API key at: Settings > Your Account > API Keys > Create API Key
cURLRead-only live mirror of Archestra.AI Slack
👋Join the discussion withAI enthusiasts!next.config.ts that proxy everything to the backend internally:/api/* → backend port 9000/v1/* → backend port 9000 (LLM proxy endpoints)/health → backend health check/ws → WebSocket connectionssupervisord in the Docker image), port 9000 is just an internal port. You only need to expose port 3000 externally, and all API calls will be transparently proxied to the backend within the container.ARCHESTRA_INTERNAL_API_BASE_URL is set to http://localhost:9000 (which should be the default). Everything should work through the single port.