-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
22 lines (17 loc) · 849 Bytes
/
.env.example
File metadata and controls
22 lines (17 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Phoenix Node Configuration
PHOENIXD_HOST=localhost
PHOENIXD_HTTP_PASS_LIMITED=your_phoenix_password_here
# Database Configuration
DATABASE_URL="postgresql://aurora:aurora_dev_password@localhost:5432/aurora_db"
# Better Auth Configuration
# Generate a secure secret with: openssl rand -base64 32
BETTER_AUTH_SECRET=your-secret-key-here-generate-with-openssl-rand-base64-32
# Application URL (used for auth callbacks)
NEXT_PUBLIC_APP_URL=http://localhost:3000
# Trusted origins for Better Auth (comma-separated, include your production URL if deploying)
BETTER_AUTH_TRUSTED_ORIGINS=http://localhost:3000
# Email Whitelist (optional)
# If set, only these email addresses can create accounts
# Leave empty or unset to allow any email to register
# Format: comma-separated list of email addresses
ALLOWED_EMAILS=admin@example.com,user@example.com