-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.template
More file actions
31 lines (24 loc) · 886 Bytes
/
env.template
File metadata and controls
31 lines (24 loc) · 886 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
# Environment variables for CommitBoy services
# Copy this file to .env and fill in your actual values
# Airflow Configuration
AIRFLOW__CORE__EXECUTOR=CeleryExecutor
AIRFLOW__CORE__SQL_ALCHEMY_CONN=postgresql+psycopg2://airflow:airflow@postgres/airflow
AIRFLOW__CELERY__RESULT_BACKEND=db+postgresql://airflow:airflow@postgres/airflow
AIRFLOW__CELERY__BROKER_URL=redis://:@redis:6379/0
AIRFLOW__CORE__FERNET_KEY=your-fernet-key-here
AIRFLOW__CORE__DAGS_ARE_PAUSED_AT_CREATION=True
AIRFLOW__CORE__LOAD_EXAMPLES=False
# LLM Service
LLM_API_KEY=your-openai-api-key-here
# MCP Engine
MCP_CONFIG=your-mcp-config-here
# Git Configuration
GIT_SSH_KEY=your-ssh-private-key-here
# Elasticsearch
ELASTIC_PASSWORD=your-elastic-password-here
ELASTIC_USERNAME=elastic
# MinIO
MINIO_ROOT_USER=minioadmin
MINIO_ROOT_PASSWORD=minioadmin
# Webhook Listener
WEBHOOK_SECRET=your-webhook-secret-here