Fix compose backend env file; document R2 and Square webhook variables

compose.yml backend service now reads the root ./.env (which README instructs users to create) instead of the nonexistent backend/.env. Promote R2_ACCESS_KEY/R2_SECRET_KEY/R2_BUCKET/R2_PUBLIC_URL to active vars (prod S3 reads all four via getEnv) and document the webhook URL/signature-key exact-match requirement with fail-closed (503/403) wording.
This commit is contained in:
2026-08-22 00:34:49 +01:00
parent e5c6458ec7
commit 91fe5ea399
2 changed files with 12 additions and 5 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ services:
container_name: backend
restart: always
env_file:
- ./backend/.env
- ./.env # created via `cp .env.example .env` (see README Getting Started)
volumes:
- ./backend/bin:/app/bin # Mount your compiled binary
depends_on: