-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
25 lines (20 loc) · 1.21 KB
/
.env.example
File metadata and controls
25 lines (20 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Google Cloud Configuration
# Copy this file to .env and fill in your values
# Google Service Account JSON (as a stringified JSON)
# Get this from Google Cloud Console -> IAM & Admin -> Service Accounts
# Create a service account, download the JSON key, and paste the entire JSON here as a string
GOOGLE_SERVICE_ACCOUNT_JSON={"type":"service_account","project_id":"your-project-id","private_key_id":"","private_key":"","client_email":"","client_id":"","auth_uri":"","token_uri":"","auth_provider_x509_cert_url":"","client_x509_cert_url":""}
# Google Drive Folder ID
# Create a folder in Google Drive, open it, and copy the ID from the URL
# Example: https://drive.google.com/drive/folders/FOLDER_ID_HERE
GOOGLE_DRIVE_FOLDER_ID=your-folder-id
# Google Sheets Spreadsheet ID
# Create a Google Sheet, open it, and copy the ID from the URL
# Example: https://docs.google.com/spreadsheets/d/SPREADSHEET_ID_HERE/edit
GOOGLE_SPREADSHEET_ID=your-spreadsheet-id
# Optional: RSVP API URL (for EventPage RSVP submissions)
# If using Google Apps Script or another API endpoint
REACT_APP_RSVP_API_URL=https://script.google.com/macros/s/YOUR_SCRIPT_ID/exec
# Backend Configuration (for local Express server)
PORT=5001
CORS_ORIGIN=http://localhost:3000