VidSimplify / frontend /.env.example
Adityahulk
Restoring repo state for deployment
6fc3143
# 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"