Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@ WHATSAPP_PROVIDER=
# Configurar en: https://developers.facebook.com
# META_ACCESS_TOKEN=
# META_PHONE_NUMBER_ID=
# META_VERIFY_TOKEN=agentkit-verify
# META_VERIFY_TOKEN= # Genera uno aleatorio: python -c "import secrets;print(secrets.token_urlsafe(32))"
# META_APP_SECRET= # App Secret del dashboard de Meta — REQUERIDO para validar firma del webhook

# ── Twilio (si WHATSAPP_PROVIDER=twilio) ──────────────────
# Configurar en: https://twilio.com
# TWILIO_ACCOUNT_SID=
# TWILIO_AUTH_TOKEN=
# TWILIO_PHONE_NUMBER=
# TWILIO_VALIDATE_SIGNATURE=true # Pon "false" solo para tests locales sin URL pública

# ── Servidor ──────────────────────────────────────────────
PORT=8000
Expand Down
24 changes: 1 addition & 23 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Secretos — NUNCA subir a GitHub
# Secretos — NUNCA subir
.env

# Base de datos local
Expand All @@ -9,26 +9,13 @@
# Python
__pycache__/
*.py[cod]
*.pyo
.venv/
venv/
env/
*.egg-info/
dist/
build/

# Knowledge (archivos privados del negocio)
knowledge/*
!knowledge/.gitkeep

# Archivos generados por Claude Code durante onboarding
agent/
config/
tests/
requirements.txt
Dockerfile
docker-compose.yml

# Session state
config/session.yaml

Expand All @@ -39,12 +26,3 @@ Thumbs.db
# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# Docker
.dockerignore

# Node (si se usa para Claude Code)
node_modules/
Loading