-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
executable file
·88 lines (72 loc) · 1.95 KB
/
.env.example
File metadata and controls
executable file
·88 lines (72 loc) · 1.95 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# PipelineIQ Environment Configuration
# Application
APP_NAME=PipelineIQ
APP_VERSION=3.6.2
DEBUG=false
LOG_LEVEL=INFO
# Database
DATABASE_URL=postgresql://pipelineiq:your_password@db:5432/pipelineiq
DATABASE_WRITE_URL=postgresql://pipelineiq:your_password@pgbouncer:5432/pipelineiq
DATABASE_READ_URL=postgresql://pipelineiq:your_password@pgbouncer-replica:5432/pipelineiq
READ_REPLICA_HOST=db
POSTGRES_USER=pipelineiq
POSTGRES_PASSWORD=your_password
POSTGRES_DB=pipelineiq
REPLICATION_USER=replicator
REPLICATION_PASSWORD=your_replication_password
SECRET_KEY=your-secret-key-minimum-32-characters-long-change-me
# Redis & Celery
REDIS_URL=redis://redis-broker:6379/0
REDIS_BROKER_URL=redis://redis-broker:6379/0
REDIS_PUBSUB_URL=redis://redis-pubsub:6380/0
REDIS_CACHE_URL=redis://redis-cache:6381/0
REDIS_YJS_URL=redis://redis-yjs:6382/0
CELERY_BROKER_URL=redis://redis-broker:6379/0
CELERY_RESULT_BACKEND=redis://redis-broker:6379/0
CELERY_WORKERS_CRITICAL=2
CELERY_WORKERS_DEFAULT=3
CELERY_WORKERS_BULK=2
# File Storage
UPLOAD_DIR=./uploads
MAX_UPLOAD_SIZE=52428800
# Pipeline Execution
MAX_PIPELINE_STEPS=50
MAX_ROWS_PER_FILE=1000000
STEP_TIMEOUT_SECONDS=300
# API
API_PREFIX=/api/v1
CORS_ORIGINS=["http://localhost:3000","http://localhost"]
# Caching
CACHE_TTL_STATS=30
# Rate Limiting
RATE_LIMIT_PIPELINE_RUN=10/minute
RATE_LIMIT_FILE_UPLOAD=30/minute
RATE_LIMIT_VALIDATION=60/minute
RATE_LIMIT_READ=120/minute
# Schema Drift
DRIFT_DETECTION_ENABLED=true
MAX_VERSIONS_PER_PIPELINE=50
# Flower (Celery monitoring)
FLOWER_USER=admin
FLOWER_PASSWORD=change_me_in_production
# Auth
ACCESS_TOKEN_EXPIRE_MINUTES=1440
# Grafana
GRAFANA_USER=admin
GRAFANA_PASSWORD=change_me_in_production
# Sentry (optional — leave empty to disable)
SENTRY_DSN=
# Email (SMTP)
SMTP_HOST=
SMTP_PORT=587
SMTP_USER=
SMTP_PASSWORD=
SMTP_FROM=
SMTP_USE_TLS=true
SMTP_USE_SSL=false
SMTP_TIMEOUT=10
# Deployment
ENVIRONMENT=development
MINIO_IMAGE_TAG=latest
GEMINI_API_KEY=
GEMINI_MODEL=gemini-1.5-flash