-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
executable file
·52 lines (44 loc) · 1.59 KB
/
.env.example
File metadata and controls
executable file
·52 lines (44 loc) · 1.59 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
44
45
46
47
48
49
50
51
52
# ==========================================
# ORBIT - Environment Configuration Template
# ==========================================
# Copy this file to .env and fill with your values
# NEVER commit .env to git (already in .gitignore)
# ==========================================
# DATABASE
# ==========================================
POSTGRES_USER=orbit
POSTGRES_PASSWORD=orbit_password
POSTGRES_DB=orbit
DATABASE_URL=postgresql://orbit:orbit_password@postgres:5432/orbit
# ==========================================
# BACKEND
# ==========================================
SECRET_KEY=dev-secret-key-change-in-production
ENVIRONMENT=development
# ==========================================
# REDIS
# ==========================================
REDIS_HOST=redis
REDIS_PORT=6379
# ==========================================
# FRONTEND
# ==========================================
NEXT_PUBLIC_API_URL=http://localhost:8000
NEXT_PUBLIC_APP_NAME=Orbit
# ==========================================
# AI MODELS API KEYS
# ==========================================
# API keys are automatically seeded into the database (ai_models table)
# when running migrations (alembic upgrade head).
#
# Add your keys below and run migrations to populate the database:
# docker-compose -p orbit exec backend poetry run alembic upgrade head
#
# If keys are not present, models will be created as INACTIVE with placeholders.
# You can activate them later via web interface: http://localhost:3000/ai-models
# Anthropic (Claude models)
ANTHROPIC_API_KEY=
# OpenAI (GPT models)
OPENAI_API_KEY=
# Google AI (Gemini models)
GOOGLE_AI_API_KEY=