-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (22 loc) · 905 Bytes
/
.env.example
File metadata and controls
27 lines (22 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Database
# Get this from your Neon dashboard or Vercel Storage integration
DATABASE_URL=postgresql://user:password@host.neon.tech/dbname
# Vercel OAuth App Configuration
# Create an OAuth App at: https://vercel.com/dashboard/settings/oauth-apps
NEXT_PUBLIC_VERCEL_APP_CLIENT_ID=your_client_id_here
VERCEL_APP_CLIENT_SECRET=your_client_secret_here
# Authentication
# Comma-separated list of allowed email addresses
ALLOWED_EMAILS=you@example.com,team@example.com
# Cron Security
# Generate a random secret string to secure the cron endpoint
# Example: openssl rand -hex 32
CRON_SECRET=your_random_secret_here
# Email Alerts (Optional)
# Get your API key from: https://resend.com/api-keys
RESEND_API_KEY=re_your_api_key_here
ALERT_EMAILS=alerts@example.com
ALERT_FROM_EMAIL=Uptime Monitor <noreply@yourdomain.com>
# Development
# Set to 'true' to bypass OAuth for local development
BYPASS_AUTH=false