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:
+1
-1
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user