-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy path.env.example
More file actions
54 lines (47 loc) · 1.96 KB
/
.env.example
File metadata and controls
54 lines (47 loc) · 1.96 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
# ==============================================================================
# CB-Tumblebug Environment Configuration Example
# ==============================================================================
# Copy this file to .env and adjust values as needed.
#
# Usage:
# cp .env.example .env
# # Edit .env with your values
# docker compose up -d
# ==============================================================================
# Docker Compose Configuration
# Select which docker-compose files to run
COMPOSE_FILE=docker-compose.yaml
# Use the following line when Traefik is required for secure development and testing
# COMPOSE_FILE=docker-compose.yaml:docker-compose.traefik.yaml
# CB-Tumblebug API Credentials
# CB-Tumblebug REST API username
TB_API_USERNAME=default
# CB-Tumblebug REST API password
TB_API_PASSWORD=default
# CB-Spider API Credentials
# Shared source for both cb-spider (SPIDER_USERNAME) and cb-tumblebug (TB_SPIDER_USERNAME).
# Both services reference this variable in docker-compose.yaml.
SP_API_USERNAME=default
SP_API_PASSWORD=default
# MC-Terrarium API Credentials
# MC-Terrarium REST API username
TERRARIUM_API_USERNAME=default
# MC-Terrarium REST API password
TERRARIUM_API_PASSWORD=default
# PostgreSQL Credentials
# Shared by cb-tumblebug-postgres, cb-tumblebug, and cb-tumblebug-metabase-init
POSTGRES_USER=tumblebug
POSTGRES_PASSWORD=tumblebug
POSTGRES_DB=tumblebug
# CB-Tumblebug Metabase Dashboard
# Admin account for Metabase web UI (http://localhost:3000)
MB_ADMIN_EMAIL=admin1@your.org
MB_ADMIN_PASSWORD=admin1@your.org
# OpenBao (Secrets Management)
# Persistent mode: auto-populated by ./init/init-openbao.sh after first init.
# Dev mode: sets the initial root token via BAO_DEV_ROOT_TOKEN_ID.
# Note: VAULT_TOKEN (not BAO_TOKEN) — required by OpenTofu hashicorp/vault provider.
# Persistent mode: auto-set by init-openbao.sh (leave empty here)
VAULT_TOKEN=
# OpenBao API address (host-side; overridden inside Docker)
VAULT_ADDR=http://localhost:8200