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:
@@ -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
|
||||||
|
|||||||
@@ -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'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user