-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (27 loc) · 929 Bytes
/
.env.example
File metadata and controls
37 lines (27 loc) · 929 Bytes
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
# Database Configuration
# For Neon (recommended for production):
# DATABASE_URL=postgresql://username:password@ep-example-123456.us-east-1.aws.neon.tech/database_name?sslmode=require
# For local PostgreSQL:
DATABASE_URL=postgresql://username:password@localhost:5432/database_name
# Server Configuration
PORT=3000
NODE_ENV=development
# AI Provider API Keys
# OpenAI Configuration
OPENAI_API_KEY=sk-...
# Anthropic Configuration
ANTHROPIC_API_KEY=sk-ant-...
# Google Gemini Configuration
GOOGLE_API_KEY=AIza...
# Hugging Face Configuration (for transformers and model access)
HUGGING_FACE_API_KEY=hf_...
HF_TOKEN=hf_...
# Ollama Configuration (Local LLM)
OLLAMA_BASE_URL=http://localhost:11434
# Email Configuration (SendGrid)
SENDGRID_API_KEY=SG...
# Payment Configuration (Stripe)
STRIPE_SECRET_KEY=sk_test_...
STRIPE_PUBLISHABLE_KEY=pk_test_...
# Session Configuration
SESSION_SECRET=your-random-session-secret-here