mirror of
https://github.com/LukeHagar/relay.git
synced 2025-12-07 20:57:45 +00:00
21 lines
628 B
Plaintext
21 lines
628 B
Plaintext
# Database Configuration
|
|
DATABASE_URL="postgresql://username:password@localhost:5432/webhook_relay_sveltekit"
|
|
|
|
# Authentication (Auth.js)
|
|
AUTH_SECRET="your-super-secret-auth-key-here-min-32-chars"
|
|
GITHUB_CLIENT_ID="your-github-oauth-app-client-id"
|
|
GITHUB_CLIENT_SECRET="your-github-oauth-app-client-secret"
|
|
|
|
# Application Configuration
|
|
REDIRECT_URL="http://localhost:5173/dashboard"
|
|
|
|
# WebSocket Server Configuration
|
|
WS_PORT="4001"
|
|
|
|
# Optional: Custom domain configuration for production
|
|
# PUBLIC_DOMAIN="yourdomain.com"
|
|
# PUBLIC_WS_DOMAIN="ws.yourdomain.com"
|
|
|
|
# Development Settings
|
|
# NODE_ENV="development"
|
|
# LOG_LEVEL="debug" |