mirror of
https://github.com/complexcaresolutions/cms.c2sgmbh.git
synced 2026-03-17 18:34:13 +00:00
Update all version references from Payload 3.69.0 → 3.76.1 and Next.js 15.5.9 → 16.2.0-canary.41. Replace .env.example (MongoDB → PostgreSQL) and README.md (generic template → project-specific). Remove obsolete BUG_REPORT_CUSTOM_VIEWS.md. Add YouTube Analytics Dashboard to URLs and February 2026 changelog entry. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
39 lines
1,009 B
Text
39 lines
1,009 B
Text
# Datenbank (PostgreSQL via PgBouncer)
|
|
DATABASE_URI=postgresql://payload:YOUR_PASSWORD@127.0.0.1:6432/payload_db
|
|
PAYLOAD_SECRET=YOUR_SECRET_HERE
|
|
PAYLOAD_PUBLIC_SERVER_URL=http://localhost:3000
|
|
NEXT_PUBLIC_SERVER_URL=http://localhost:3000
|
|
NODE_ENV=development
|
|
PORT=3000
|
|
|
|
# E-Mail (Global Fallback)
|
|
SMTP_HOST=smtp.example.com
|
|
SMTP_PORT=587
|
|
SMTP_SECURE=false
|
|
SMTP_USER=user@example.com
|
|
SMTP_PASS=your-password
|
|
SMTP_FROM_ADDRESS=noreply@example.com
|
|
SMTP_FROM_NAME=Payload CMS
|
|
|
|
# Redis Cache (optional, In-Memory-Fallback)
|
|
REDIS_URL=redis://localhost:6379
|
|
|
|
# Security
|
|
CSRF_SECRET=your-csrf-secret
|
|
TRUST_PROXY=true
|
|
|
|
# YouTube OAuth (optional)
|
|
GOOGLE_CLIENT_ID=your-client-id
|
|
GOOGLE_CLIENT_SECRET=your-client-secret
|
|
YOUTUBE_REDIRECT_URI=http://localhost:3000/api/youtube/callback
|
|
|
|
# Meta OAuth (optional)
|
|
META_APP_ID=your-app-id
|
|
META_APP_SECRET=your-app-secret
|
|
META_REDIRECT_URI=http://localhost:3000/api/auth/meta/callback
|
|
|
|
# Cron Jobs (optional)
|
|
CRON_SECRET=your-64-char-hex
|
|
|
|
# Tests
|
|
EMAIL_DELIVERY_DISABLED=false
|