-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy path.env.dev
More file actions
40 lines (29 loc) · 1.11 KB
/
.env.dev
File metadata and controls
40 lines (29 loc) · 1.11 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
# Outpost Development Environment
# Copy this file to .env to get started. See .env.example for all available options.
# Load configuration from YAML file
CONFIG=".outpost.yaml"
# ============================== Local Dev Stack ==============================
# These flags control which services `make up` brings up. Edit and re-run
# `make up` — compose reconciles the running stack to match.
# --- Dependencies ---
# KV store (Redis is default, uncomment to use Dragonfly instead)
# LOCAL_DEV_DRAGONFLY=1
# Log store
LOCAL_DEV_CLICKHOUSE=1
# LOCAL_DEV_POSTGRES=1
# Message queue
LOCAL_DEV_RABBITMQ=1
# LOCAL_DEV_LOCALSTACK=1
# LOCAL_DEV_GCP=1
# --- Add-on stacks ---
# Forward proxy for testing DESTINATIONS_WEBHOOK_PROXY_URL flows
# LOCAL_DEV_ENVOY=1
# Observability (pick one — they conflict on otel-collector + OTLP ports)
# LOCAL_DEV_GRAFANA=1
# LOCAL_DEV_UPTRACE=1
# Azure Service Bus + SQL Edge emulators (for destazure provider tests)
# LOCAL_DEV_AZURE=1
# --- GUI tools (set to 1 for default port, or a number to override) ---
# LOCAL_DEV_REDIS_COMMANDER=28081
# LOCAL_DEV_PGADMIN=28082
# LOCAL_DEV_TABIX=28083