28 lines
1.1 KiB
Plaintext
28 lines
1.1 KiB
Plaintext
# Google API Credentials
|
|
GOOGLE_CLIENT_ID=your_client_id_here
|
|
GOOGLE_CLIENT_SECRET=your_client_secret_here
|
|
GOOGLE_REDIRECT_URI=http://localhost/family-hub/auth/google/callback
|
|
|
|
# Google Calendar (Calendar tab embed). Replace placeholders—leaving your_calendar_id_here hides the embed.
|
|
# Easiest: set GOOGLE_CALENDAR_ID to the Calendar ID from Google Calendar → Settings → Integrate calendar.
|
|
# Optional: paste the embed URL or full <iframe> HTML into GOOGLE_CALENDAR_EMBED_CODE; wrap the whole value in "double quotes" if you have parsing issues.
|
|
GOOGLE_CALENDAR_ID=your_calendar_id_here
|
|
GOOGLE_CALENDAR_EMBED_CODE=your_embed_code_here
|
|
|
|
# Google Drive
|
|
GOOGLE_DRIVE_FOLDER_ID=your_folder_id_here
|
|
|
|
# Application Settings
|
|
APP_ENV=development
|
|
APP_DEBUG=true
|
|
APP_URL=http://localhost/family-hub
|
|
|
|
# Export Settings
|
|
EXPORT_FREQUENCY=daily
|
|
EXPORT_RETENTION_DAYS=30
|
|
|
|
# MCP / machine clients (optional). Leave MCP_API_TOKEN empty to disable Bearer auth.
|
|
# Generate MCP_API_TOKEN with: openssl rand -hex 32
|
|
MCP_API_TOKEN=
|
|
# people.json id of the Head of household this token should act as (must be role head_of_household)
|
|
MCP_ACTOR_PERSON_ID= |