-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
13 lines (13 loc) · 747 Bytes
/
Copy path.env.example
File metadata and controls
13 lines (13 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copy to .env and fill in your values — never commit .env
# Local dev: run `supabase start` and use values from `supabase status`
DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:55322/postgres
SUPABASE_URL=http://127.0.0.1:55321
SUPABASE_PUBLIC_URL=http://localhost:55321 # URL used by the browser (not the container)
SUPABASE_ANON_KEY=eyJ...
SUPABASE_JWT_SECRET=super-secret-jwt-token-with-at-least-32-characters-long
ALLOWED_ORIGINS=http://localhost:8000
# Encrypts per-user Hugging Face tokens (set via the /settings page) at rest.
# Generate with: python -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())"
SECRET_KEY=
DEV_AUTO_LOGIN=false
COOKIE_SECURE=false # set to true in production (HTTPS only)