You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add nginx reverse proxy for API — remove localhost dependency
The frontend now uses relative URLs by default and nginx proxies /api/
and /ws/ requests to the API container. This removes the need to
configure VITE_API_URL for Docker deployments and allows accessing
AgentCrew from any IP or hostname (VPN, remote servers, etc.).
For local development with `npm run dev`, set VITE_API_URL in .env.
Bump version to 0.2.3.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
ci: parallelize multi-arch builds with native ARM runners
Replace sequential QEMU-emulated builds with a matrix strategy using
native runners (ubuntu-latest for amd64, ubuntu-24.04-arm for arm64).
Each architecture builds in parallel on its own runner, then a manifest
job merges the per-arch images into multi-arch manifest lists.
Bump version to 0.2.2.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
feat: add multi-arch Docker image builds (amd64 + arm64)
Build frontend image for linux/amd64 and linux/arm64 using Docker
Buildx and QEMU. Bump version to 0.2.1.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>