mirror of
https://github.com/Xevion/xevion.dev.git
synced 2026-01-31 12:26:39 -06:00
- Replace title/tagline homepage with social profile design - Add Radix UI Themes + icon libraries for modern UI components - Provide sensible dev defaults for DB/secrets (no .env required) - Add production safety checks for critical env vars - Make optional features (cron, healthcheck) gracefully skip when unconfigured
24 lines
638 B
Plaintext
24 lines
638 B
Plaintext
# Environment variables for xevion.dev
|
|
# Dev defaults are available - no .env file needed for basic development
|
|
# See schema in /env/schema.mjs
|
|
|
|
# Payload CMS (dev defaults match docker-compose credentials)
|
|
PAYLOAD_SECRET=your-secret-key-here
|
|
DATABASE_URI=postgresql://xevion:xevion_dev_password@localhost:5432/xevion_dev
|
|
|
|
# Optional - enables /api/cron/updated endpoint
|
|
GITHUB_API_TOKEN=
|
|
|
|
# Optional - enables /api/healthcheck endpoint
|
|
HEALTHCHECK_SECRET=
|
|
|
|
# Optional - auth for /api/cron/updated (skipped in dev)
|
|
CRON_SECRET=
|
|
|
|
# Optional
|
|
PAYLOAD_REVALIDATE_KEY=
|
|
TITLE=
|
|
|
|
# Auto-detected, usually don't need to set
|
|
NODE_ENV=development
|