-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (24 loc) · 935 Bytes
/
Copy path.env.example
File metadata and controls
27 lines (24 loc) · 935 Bytes
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
# ===========================================
# Environment Configuration
# ===========================================
#
# This project supports multiple environments:
# - local: Uses local Supabase instance (supabase start)
# - test: Uses a separate Supabase project for testing/staging
# - production: Uses the production Supabase project
#
# To set up an environment:
# 1. Copy the appropriate .env.{env}.example to .env.{env}
# 2. Fill in your actual values
# 3. Run with: pnpm dev (uses .env.local by default)
# or: pnpm dev:test / pnpm dev:prod
#
# For Netlify deployment, set environment variables in the Netlify dashboard.
# ===========================================
# Supabase Configuration
VITE_SUPABASE_URL=https://your-project.supabase.co
VITE_SUPABASE_ANON_KEY=your_anon_key
# Environment identifier (local, test, production)
VITE_APP_ENV=local
# CDN Base URL for WASM/emulator assets
VITE_CDN_BASE=/cdn