.env.example and gscript/Setup.js (the original Apps Script reference) had real email addresses hardcoded as examples.
12 lines
554 B
Plaintext
12 lines
554 B
Plaintext
# Used by `docker compose` for both the frontend build arg and the
|
|
# container's runtime env — copy to .env next to compose.yaml on the host
|
|
# and fill in real values. Not read by the apps directly (see
|
|
# backend/.env.example and frontend/.env.example for local dev).
|
|
|
|
VITE_GOOGLE_CLIENT_ID=your-client-id.apps.googleusercontent.com
|
|
GOOGLE_CLIENT_ID=your-client-id.apps.googleusercontent.com
|
|
ADMIN_EMAILS=owner@example.com,manager@example.com
|
|
JWT_SECRET=change-me-generate-with-openssl-rand-hex-32
|
|
CORS_ORIGIN=https://eatme.mipem.co
|
|
COOKIE_SECURE=true
|