-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
43 lines (33 loc) · 1.26 KB
/
.env.example
File metadata and controls
43 lines (33 loc) · 1.26 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
35
36
37
38
39
40
41
42
43
# _y Company Configuration
# Copy to .env and fill in values
# ============================================
# LLM (Required: at least one)
# ============================================
# LLM Provider: ollama | openai | anthropic | google | mixed
LLM_PROVIDER=ollama
# Ollama (recommended for local/free usage)
OLLAMA_URL=http://localhost:11434
OLLAMA_MODEL=qwen2.5:7b
# Cloud API keys (only needed for respective providers)
OPENAI_API_KEY=
ANTHROPIC_API_KEY=
GOOGLE_API_KEY=
# Legacy (still supported)
# GEMINI_API_KEY=
# ============================================
# Database Provider: sqlite | postgres | supabase
# ============================================
DB_PROVIDER=sqlite
# SQLite (default, no setup needed)
# DB_PATH=data/y-company.db
# PostgreSQL (if DB_PROVIDER=postgres)
# DATABASE_URL=postgresql://user:password@localhost:5432/y_company
# Supabase (if DB_PROVIDER=supabase)
# SUPABASE_URL=https://your-project.supabase.co
# SUPABASE_ANON_KEY=your-anon-key
# SUPABASE_SERVICE_KEY=your-service-role-key
# Database Provider: sqlite (default) | supabase | postgres
# SQLite works locally. Use supabase/postgres for cloud deployment (Vercel).
# DB_PROVIDER=supabase
# NEXT_PUBLIC_SUPABASE_URL=https://your-project.supabase.co
# NEXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-key