Spaces:
Sleeping
Sleeping
File size: 655 Bytes
6fc3143 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# Google Authentication
GOOGLE_CLIENT_ID=your_google_client_id_here
GOOGLE_CLIENT_SECRET=your_google_client_secret_here
NEXTAUTH_URL=http://localhost:3000
NEXTAUTH_SECRET=generate_a_random_string_here
# Internal Security
INTERNAL_API_KEY=secure-internal-key-123
# Database (Supabase / Postgres)
# Connect to port 6543 (Transaction Pooler) for DATABASE_URL
DATABASE_URL="postgresql://postgres.[project-ref]:[password]@aws-0-[region].pooler.supabase.com:6543/postgres?pgbouncer=true"
# Connect to port 5432 (Session) for DIRECT_URL (Used for migrations)
DIRECT_URL="postgresql://postgres.[project-ref]:[password]@aws-0-[region].supabase.co:5432/postgres"
|