-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
51 lines (40 loc) · 1.39 KB
/
.env.example
File metadata and controls
51 lines (40 loc) · 1.39 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
# ============================================
# AI Dev Environment Configuration
# ============================================
# Copia este archivo a .env y configura tus valores
# cp .env.example .env
# --- API Keys ---
# IMPORTANTE: Claude Code es el agente recomendado para VibeKanban
# Obtén tu API key de Anthropic en https://console.anthropic.com
ANTHROPIC_API_KEY=your_anthropic_api_key
# Obtén tu API key de OpenAI en https://platform.openai.com (opcional)
OPENAI_API_KEY=your_openai_api_key
# Obtén tu API key de Google en https://aistudio.google.com/apikey
GOOGLE_API_KEY=your_google_api_key
# Obtén tu API key de OpenCode en https://opencode.ai
OPENCODE_API_KEY=your_opencode_api_key
# --- Git Configuration ---
GIT_AUTHOR_NAME=AI Dev Team
# --- Ports ---
VIBEKANBAN_PORT=3000
VIBEKANBAN_BACKEND_PORT=3001
APP_PORT=8000
APP_FRONTEND_PORT=3002
DB_PORT=5432
# --- Database ---
POSTGRES_USER=aidev
POSTGRES_PASSWORD=aidev123
POSTGRES_DB=aidev
DATABASE_URL=postgresql://aidev:aidev123@database:5432/aidev
# --- Project Configuration ---
PROJECT_NAME=my-reflex-app
PROJECT_DESCRIPTION=Application built with AI agents
# --- Security ---
# Genera una clave secreta segura: python -c "import secrets; print(secrets.token_urlsafe(32))"
SECRET_KEY=your-secret-key-here-change-in-production
# --- Debug ---
DEBUG=false
LOG_LEVEL=info
# --- Reflex Configuration ---
REFLEX_ENV=dev