30 lines
No EOL
925 B
Text
30 lines
No EOL
925 B
Text
# Database Configuration
|
|
MONGODB_URI=mongodb://localhost:27017/ghostguild
|
|
|
|
# Helcim Configuration
|
|
# Switch between test and live by commenting/uncommenting:
|
|
# HELCIM_API_TOKEN=your-live-helcim-api-token
|
|
HELCIM_API_TOKEN=your-test-helcim-api-token
|
|
NUXT_PUBLIC_HELCIM_ACCOUNT_ID=your-helcim-account-id
|
|
|
|
# Email Configuration (Resend)
|
|
RESEND_API_KEY=your-resend-api-key
|
|
RESEND_FROM_EMAIL=noreply@ghostguild.org
|
|
|
|
# Slack Integration
|
|
SLACK_WEBHOOK_URL=your-slack-webhook-url
|
|
SLACK_OAUTH_TOKEN=your-slack-oauth-token
|
|
|
|
# JWT Secret for authentication
|
|
JWT_SECRET=your-jwt-secret-key-change-this-in-production
|
|
|
|
# Application URLs
|
|
APP_URL=http://localhost:3000
|
|
|
|
# Base URL for emails and magic links (used by server-side code)
|
|
BASE_URL=http://localhost:3000
|
|
|
|
# OIDC Provider (for Outline Wiki SSO)
|
|
OIDC_CLIENT_ID=outline-wiki
|
|
OIDC_CLIENT_SECRET=<generate-with-openssl-rand-hex-32>
|
|
OIDC_COOKIE_SECRET=<generate-with-openssl-rand-hex-32> |