Spaces:
Paused
Paused
File size: 529 Bytes
803c132 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # Supabase Storage Configuration
# Copy this file to .env and fill in your values
# Your Supabase project URL
# Example: https://abcdefghijklmnop.supabase.co
SUPABASE_URL=https://your-project-id.supabase.co
# Your Supabase service role key (for server-side uploads)
# Get this from: Supabase Dashboard > Settings > API > service_role key
# WARNING: Keep this secret! Never commit this to version control.
SUPABASE_KEY=your-service-role-key-here
# Storage bucket name (optional, defaults to "outputs")
SUPABASE_BUCKET=outputs
|