Adds a guacamole/guacd service to docker-compose.yml and points the backend at it (ARCHNEST_GUACD_HOST/PORT) plus passes through ARCHNEST_GUAC_CRYPT_KEY, with depends_on ordering. Documents ARCHNEST_GUACD_* in backend/.env.example. Closes the Phase 5 deployment gap. Compose validated via `docker compose config`. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01BbJV5nm8KPVH1oNJYKpnoF
10 lines
479 B
Text
10 lines
479 B
Text
PORT=4000
|
|
ARCHNEST_DB_PATH=./data/archnest.db
|
|
ARCHNEST_JWT_SECRET=change-me-to-a-long-random-string
|
|
ARCHNEST_SECRET_KEY=change-me-to-another-long-random-string
|
|
ARCHNEST_CORS_ORIGIN=http://localhost:5173
|
|
ARCHNEST_GUAC_CRYPT_KEY=change-me-to-a-32-byte-secret!!
|
|
# Where guacd is reachable. In docker-compose this is the "guacd" service name;
|
|
# for local dev run guacd separately and point these at it (default 127.0.0.1:4822).
|
|
ARCHNEST_GUACD_HOST=127.0.0.1
|
|
ARCHNEST_GUACD_PORT=4822
|