Scrub personal emails from example/reference files before going public

.env.example and gscript/Setup.js (the original Apps Script reference)
had real email addresses hardcoded as examples.
This commit is contained in:
Michal Pemcak
2026-08-16 18:40:20 +02:00
parent 94933cac5c
commit 04e2f83c29
2 changed files with 6 additions and 6 deletions

View File

@@ -3,9 +3,9 @@
# and fill in real values. Not read by the apps directly (see # and fill in real values. Not read by the apps directly (see
# backend/.env.example and frontend/.env.example for local dev). # backend/.env.example and frontend/.env.example for local dev).
VITE_GOOGLE_CLIENT_ID=766105276369-qa2iojmdc89ec3bqbmmg0ujmp9114scr.apps.googleusercontent.com VITE_GOOGLE_CLIENT_ID=your-client-id.apps.googleusercontent.com
GOOGLE_CLIENT_ID=766105276369-qa2iojmdc89ec3bqbmmg0ujmp9114scr.apps.googleusercontent.com GOOGLE_CLIENT_ID=your-client-id.apps.googleusercontent.com
ADMIN_EMAILS=mipemco@gmail.com,filip.thurrigl@gmail.com ADMIN_EMAILS=owner@example.com,manager@example.com
JWT_SECRET=change-me-generate-with-openssl-rand-hex-32 JWT_SECRET=change-me-generate-with-openssl-rand-hex-32
CORS_ORIGIN=https://eatme.mipem.co CORS_ORIGIN=https://eatme.mipem.co
COOKIE_SECURE=true COOKIE_SECURE=true

View File

@@ -121,8 +121,8 @@ function createSystemTriggers() {
} }
function createMyAdmin() { function createMyAdmin() {
return seedFirstAdmin( return seedFirstAdmin(
'filip.thurrigl@gmail.com', 'owner@example.com',
'Philipp', 'First',
'Thürrigl' 'Last'
); );
} }