pulse-zax/.env.example

52 lines
2.3 KiB
Plaintext

# =============================================================================
# Pulse — Environment Variables
# =============================================================================
# Copy this file to .env and fill in the values for your environment.
# -----------------------------------------------------------------------------
# Database
# -----------------------------------------------------------------------------
DATABASE_URL=postgresql://postgres:your-password@localhost:5432/postgres
# -----------------------------------------------------------------------------
# Supabase
# -----------------------------------------------------------------------------
SUPABASE_URL=http://localhost:8000
SUPABASE_ANON_KEY=your-supabase-anon-key
SUPABASE_SERVICE_ROLE_KEY=your-supabase-service-role-key
# -----------------------------------------------------------------------------
# Client (Vite build-time — must be prefixed with VITE_)
# -----------------------------------------------------------------------------
VITE_SUPABASE_URL=http://localhost:8000
VITE_SUPABASE_ANON_KEY=your-supabase-anon-key
# -----------------------------------------------------------------------------
# OAuth Providers (optional, set to "true" to enable)
# -----------------------------------------------------------------------------
GOOGLE_OAUTH_ENABLED=false
DISCORD_OAUTH_ENABLED=false
FACEBOOK_OAUTH_ENABLED=false
TWITCH_OAUTH_ENABLED=false
# -----------------------------------------------------------------------------
# WebRTC / Voice
# -----------------------------------------------------------------------------
# Public IP for WebRTC ICE candidates (required for Docker / remote access)
# PUBLIC_IP=203.0.113.1
# -----------------------------------------------------------------------------
# Registration
# -----------------------------------------------------------------------------
# Set to "true" to disable all new user registration instance-wide.
# Existing users can still log in. Invites bypass this restriction.
# REGISTRATION_DISABLED=false
# -----------------------------------------------------------------------------
# Optional
# -----------------------------------------------------------------------------
# GIPHY_API_KEY=your-giphy-api-key
# TRUST_PROXY=true
# RUNNING_IN_DOCKER=true
# DEBUG=true