-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
19 lines (15 loc) · 904 Bytes
/
.env.example
File metadata and controls
19 lines (15 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# IMPORTANT: You MUST provide your own Supabase instance credentials
# This project does NOT use Lovable's managed Supabase cloud
# Get these values from your Supabase project dashboard at https://supabase.com
# Your Supabase Project URL (e.g., https://your-project-ref.supabase.co)
VITE_SUPABASE_URL=https://your-project-ref.supabase.co
# Your Supabase Anonymous/Public Key (found in Project Settings > API)
VITE_SUPABASE_PUBLISHABLE_KEY=your-anon-key-here
# Your Supabase Project ID (found in Project Settings > General)
VITE_SUPABASE_PROJECT_ID=your-project-id-here
# REQUIRED SETUP:
# 1. Create a Supabase project at https://supabase.com
# 2. Run the migrations from ./supabase/migrations/ in your Supabase SQL editor
# 3. Copy your project URL and anon key from Settings > API
# 4. Replace the values above with your actual credentials
# 5. NEVER commit your actual .env file to version control