-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.local.example
More file actions
18 lines (14 loc) · 998 Bytes
/
.env.local.example
File metadata and controls
18 lines (14 loc) · 998 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Google Sheets Configuration
# 1. Create a Google Cloud Service Account at https://console.cloud.google.com/
# 2. Enable Google Sheets API in your project
# 3. Download the JSON credentials file
# 4. Share your Google Sheet with the service account email (Editor permission)
# 5. Copy the values below from your credentials JSON and paste them here
# Email from service account credentials (format: your-app@project-id.iam.gserviceaccount.com)
GOOGLE_SHEETS_CLIENT_EMAIL=your-service-account@your-project.iam.gserviceaccount.com
# Private key from service account credentials (include quotes and newlines as \n)
GOOGLE_SHEETS_PRIVATE_KEY="-----BEGIN PRIVATE KEY-----\nYourPrivateKeyHere\n-----END PRIVATE KEY-----\n"
# Your Google Sheets Spreadsheet ID (found in the URL: docs.google.com/spreadsheets/d/{SPREADSHEET_ID}/edit)
GOOGLE_SHEETS_SPREADSHEET_ID=your-spreadsheet-id-here
# The name of the sheet/tab where testimonials will be saved (default: "Sheet1")
GOOGLE_SHEETS_SHEET_NAME=Sheet1