- Use tag-based cache for sitemap event list (events-sitemap) - Add POST /api/revalidate endpoint (secret-protected) to trigger revalidation - Backend calls revalidation after event create/update/delete - Add REVALIDATE_SECRET to .env.example (frontend + backend) Co-authored-by: Cursor <cursoragent@cursor.com>
31 lines
1.2 KiB
Plaintext
31 lines
1.2 KiB
Plaintext
# Frontend port (dev/start)
|
|
PORT=3002
|
|
|
|
# Site URL (for SEO canonical URLs, sitemap, etc.)
|
|
NEXT_PUBLIC_SITE_URL=https://spanglishcommunity.com
|
|
|
|
# API URL (leave empty for same-origin proxy)
|
|
NEXT_PUBLIC_API_URL=
|
|
|
|
# Google OAuth (optional - leave empty to hide Google Sign-In button)
|
|
# Get your Client ID from: https://console.cloud.google.com/apis/credentials
|
|
# 1. Create a new OAuth 2.0 Client ID (Web application)
|
|
# 2. Add authorized JavaScript origins: http://localhost:3002, https://yourdomain.com
|
|
# 3. Add authorized redirect URIs: http://localhost:3002, https://yourdomain.com
|
|
NEXT_PUBLIC_GOOGLE_CLIENT_ID=
|
|
|
|
# Social Links (optional - leave empty to hide)
|
|
NEXT_PUBLIC_WHATSAPP=+595991234567
|
|
NEXT_PUBLIC_INSTAGRAM=spanglish_py
|
|
NEXT_PUBLIC_EMAIL=hola@spanglish.com.py
|
|
NEXT_PUBLIC_TELEGRAM=spanglish_py
|
|
NEXT_PUBLIC_TIKTOK=spanglishsocialpy
|
|
|
|
# Revalidation secret (shared between frontend and backend for on-demand cache revalidation)
|
|
# Must match the REVALIDATE_SECRET in backend/.env
|
|
REVALIDATE_SECRET=change-me-to-a-random-secret
|
|
|
|
# Plausible Analytics (optional - leave empty to disable tracking)
|
|
NEXT_PUBLIC_PLAUSIBLE_URL=https://analytics.azzamo.net
|
|
NEXT_PUBLIC_PLAUSIBLE_DOMAIN=spanglishcommunity.com
|