12345678910111213141516171819202122232425262728293031323334353637 |
- # Database Configuration
- # Format: postgresql://USER:PASSWORD@HOST:PORT/DATABASE
- DATABASE_URL="postgresql://username:password@localhost:5432/workout_cool"
- # Authentication
- # The URL where your application is running
- BETTER_AUTH_URL="http://localhost:3000"
- # Generate a secure random string using: openssl rand -base64 32
- BETTER_AUTH_SECRET="your-secret-key-here"
- # Google OAuth
- # Get these from Google Cloud Console: https://console.cloud.google.com
- # Required scopes: email, profile
- GOOGLE_CLIENT_ID="your-google-client-id.apps.googleusercontent.com"
- GOOGLE_CLIENT_SECRET="your-google-client-secret"
- # Email Service (Resend)
- # Get your API key from: https://resend.com
- RESEND_API_KEY="re_123456789"
- # Optional: Create an audience in Resend dashboard
- RESEND_AUDIENCE_ID="aud_123456789"
- BETTER_AUTH_SECRET=
- BETTER_AUTH_URL=http://localhost:3000
- # OpenPanel Integration
- # Get these from your OpenPanel dashboard
- OPENPANEL_SECRET_KEY="op_sk_123456789"
- NEXT_PUBLIC_OPENPANEL_CLIENT_ID="op_pk_123456789"
- # Facebook Pixel
- # Get this from Facebook Business Manager
- NEXT_PUBLIC_FACEBOOK_PIXEL_ID="123456789"
- # Environment
- # Options: development, production, test
- NODE_ENV="development"
|