From 04e2f83c2989def8cf0469c74b93d6c526a845c9 Mon Sep 17 00:00:00 2001 From: Michal Pemcak Date: Sun, 16 Aug 2026 18:40:20 +0200 Subject: [PATCH] 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. --- .env.example | 6 +++--- gscript/Setup.js | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.env.example b/.env.example index 373c72b..028ef11 100644 --- a/.env.example +++ b/.env.example @@ -3,9 +3,9 @@ # 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=766105276369-qa2iojmdc89ec3bqbmmg0ujmp9114scr.apps.googleusercontent.com -GOOGLE_CLIENT_ID=766105276369-qa2iojmdc89ec3bqbmmg0ujmp9114scr.apps.googleusercontent.com -ADMIN_EMAILS=mipemco@gmail.com,filip.thurrigl@gmail.com +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 diff --git a/gscript/Setup.js b/gscript/Setup.js index a18487c..852e7a4 100644 --- a/gscript/Setup.js +++ b/gscript/Setup.js @@ -121,8 +121,8 @@ function createSystemTriggers() { } function createMyAdmin() { return seedFirstAdmin( - 'filip.thurrigl@gmail.com', - 'Philipp', - 'Thürrigl' + 'owner@example.com', + 'First', + 'Last' ); } \ No newline at end of file