Spaces:
Sleeping
Sleeping
File size: 1,076 Bytes
7c8619c 2451d08 7c8619c ed3def3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# Your Supabase Project URL
# Example: https://your-project-id.supabase.co
SUPABASE_URL=your_supabase_project_url
# Your Supabase Anonymous/Public Key
SUPABASE_ANON_KEY=your_supabase_anon_key
# Your Supabase Service Role Key (for migrations/admin operations)
# WARNING: Keep this key secure and never expose it in client-side code
SUPABASE_SERVICE_ROLE_KEY=your_supabase_service_role_key
# =================================================================
# SETUP INSTRUCTIONS:
# =================================================================
# 1. Create a Supabase project at https://supabase.com
# 2. Go to Settings → API in your project dashboard
# 3. Copy the Project URL and anon key
# 4. Replace the placeholder values above
# 5. Save this file as .env (remove the .example extension)
# 6. Run the SQL queries from README.md to set up your database
# 7. For Hugging Face Spaces, add these as regular environment variables
# (not secrets) with the same names: SUPABASE_URL, SUPABASE_ANON_KEY
# =================================================================
|