Add missing required vars: API_KEY, MINIO_*, and optional REDIS_URL, BUN_PUBLIC_BASE_URL Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
34 lines
723 B
Plaintext
34 lines
723 B
Plaintext
# App
|
|
PORT=3000
|
|
NODE_ENV=development
|
|
BUN_PUBLIC_BASE_URL=http://localhost:3000
|
|
|
|
# Dev Inspector
|
|
REACT_EDITOR=code
|
|
|
|
# Database
|
|
DATABASE_URL=postgresql://user:password@localhost:5432/base-template
|
|
DIRECT_URL=postgresql://user:password@localhost:5432/base-template
|
|
|
|
# Google OAuth
|
|
GOOGLE_CLIENT_ID=
|
|
GOOGLE_CLIENT_SECRET=
|
|
|
|
# Super Admin (comma-separated emails)
|
|
SUPER_ADMIN_EMAIL=admin@example.com
|
|
|
|
# API Key for external clients (e.g. mobile apps)
|
|
API_KEY=your-secret-api-key-here
|
|
|
|
# MinIO (object storage for bug report images)
|
|
MINIO_ENDPOINT=
|
|
MINIO_PORT=443
|
|
MINIO_USE_SSL=true
|
|
MINIO_ACCESS_KEY=
|
|
MINIO_SECRET_KEY=
|
|
MINIO_BUCKET=
|
|
MINIO_UPLOAD_DIR=bug-reports
|
|
|
|
# Redis (optional — enables App Logs feature on /dev)
|
|
REDIS_URL=
|