19 lines
625 B
Plaintext
19 lines
625 B
Plaintext
# Server configuration
|
|
HOST=127.0.0.1
|
|
PORT=4000
|
|
|
|
# API Key for authentication (generate a secure random string)
|
|
API_KEY=your-secret-api-key-here
|
|
|
|
# Google Calendar ID to manage
|
|
# For a primary calendar: user@yourdomain.com
|
|
# For a shared calendar: abc123@group.calendar.google.com
|
|
GOOGLE_CALENDAR_ID=your-calendar-id@group.calendar.google.com
|
|
|
|
# Google Service Account Key
|
|
# Can be provided as:
|
|
# 1. File path: /path/to/service_account_key.json
|
|
# 2. Base64 encoded JSON: cat service-account.json | base64 -w 0
|
|
# 3. Raw JSON string (not recommended for production)
|
|
GOOGLE_SERVICE_ACCOUNT_KEY=/path/to/service_account_key.json
|