forked from ycode/ycode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (28 loc) · 1.06 KB
/
Copy path.env.example
File metadata and controls
34 lines (28 loc) · 1.06 KB
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
28
29
30
31
32
33
34
# Supabase credentials
SUPABASE_PUBLISHABLE_KEY=
SUPABASE_SECRET_KEY=
SUPABASE_CONNECTION_URL=
SUPABASE_DB_PASSWORD=
# Self-hosted Supabase (optional)
# Set this to your Supabase API URL when using a self-hosted instance.
# Leave empty when using Supabase Cloud (the URL is derived automatically).
# Example: https://supabase.my-company.com
SUPABASE_URL=
# Templates API
NEXT_PUBLIC_TEMPLATE_API_URL=
TEMPLATE_API_URL=
TEMPLATE_UPLOAD_API_KEY=
# Secret key for signing page auth cookies (can be generated using `openssl rand -hex 32`)
PAGE_AUTH_SECRET=
# Google Fonts API Key (only to used to execute `npm run fonts:update`)
GOOGLE_FONTS_API_KEY=
# AI builder (BYOK). Set an API key for at least one provider to enable the
# in-app AI agent. Keys can also be added in Settings → Agent instead.
ANTHROPIC_API_KEY=
OPENAI_API_KEY=
# GOOGLE_API_KEY works too.
GEMINI_API_KEY=
# Optional: override the default model (defaults to claude-sonnet-5).
ANTHROPIC_MODEL=
# Debug only: set to `true` to skip auth on /ycode/preview routes. Never enable in production.
DISABLE_PREVIEW_AUTH=