-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
32 lines (24 loc) · 1.02 KB
/
.env
File metadata and controls
32 lines (24 loc) · 1.02 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
29
30
31
32
# Supabase Configuration
# Your Supabase project URL (required)
SUPABASE_URL=https://your-project-id.supabase.co
# Your Supabase API key (required)
# For production, use the service role key for full access
# For development, you can use the anon key (with limited permissions)
SUPABASE_KEY=your-supabase-api-key
# Alternative environment variable name (for compatibility)
SUPABASE_ANON_KEY=your-supabase-anon-key
# Database schema to use (optional, defaults to 'public')
SUPABASE_SCHEMA=public
# Logging Configuration
# Log level: error, warn, info, debug (optional, defaults to 'info')
LOG_LEVEL=info
# Examples for different deployment types:
# Supabase.com hosted instance:
# SUPABASE_URL=https://abcdefghijklmnop.supabase.co
# SUPABASE_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
# Self-hosted Supabase instance:
# SUPABASE_URL=https://supabase.yourdomain.com
# SUPABASE_KEY=your-service-role-key
# Local development with Supabase CLI:
# SUPABASE_URL=http://localhost:54321
# SUPABASE_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...