-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
19 lines (16 loc) · 800 Bytes
/
.env.example
File metadata and controls
19 lines (16 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Application Environment
NODE_ENV=development
APP_ENV=development
# Database URL - Supabase PostgreSQL
# For Connection Pooling (recommended for serverless/Vercel):
# DATABASE_URL=postgresql://postgres:[YOUR-PASSWORD]@[PROJECT-REF].supabase.co:6543/postgres?pgbouncer=true
#
# For Direct Connection (for migrations and development):
# DATABASE_URL=postgresql://postgres:[YOUR-PASSWORD]@db.[PROJECT-REF].supabase.co:5432/postgres
# Example (replace with your actual Supabase credentials):
DATABASE_URL=postgresql://postgres:your_password@your-project-ref.supabase.co:5432/postgres
# Database Schema (Optional)
# Specify a schema name if you want to connect to a specific PostgreSQL schema
# Default is 'public' schema if not specified
# Example: DATABASE_SCHEMA=my_schema
# DATABASE_SCHEMA=public