-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
28 lines (22 loc) · 1.04 KB
/
Copy path.env.example
File metadata and controls
28 lines (22 loc) · 1.04 KB
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
28
# Database Configuration (Use ANY PostgreSQL host)
DATABASE_URL="postgresql://username:password@host:port/database"
# Examples of different database hosts:
# AWS RDS: postgresql://user:pass@rds-instance.region.rds.amazonaws.com:5432/gamblecodez
# DigitalOcean: postgresql://user:pass@db-instance.region.do.com:25060/gamblecodez
# Railway: postgresql://user:pass@containers-us-west-1.railway.app:5432/railway
# Supabase: postgresql://user:pass@db.supabase.co:5432/postgres
# Local: postgresql://user:pass@localhost:5432/gamblecodez
# Authentication Provider (choose one)
AUTH_PROVIDER="simple" # Options: "simple", "replit", "google", "auth0"
# Simple Password Auth (easiest setup)
ADMIN_USERNAME="Admin"
ADMIN_PASSWORD="Dope!1988"
# OR Replit Authentication (if you choose AUTH_PROVIDER="replit")
# REPLIT_DOMAINS="your-domain.com"
# REPL_ID="your-repl-id-from-replit-console"
# ISSUER_URL="https://replit.com/oidc"
# Required for all auth methods
SESSION_SECRET="your-super-long-random-secret-key-here"
# Server Configuration
NODE_ENV="production"
PORT=3000