-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.env.docker.example
More file actions
35 lines (30 loc) · 1.46 KB
/
.env.docker.example
File metadata and controls
35 lines (30 loc) · 1.46 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
# TradeClaw Docker Configuration
# Copy to .env: cp .env.docker.example .env
# ---------------------------------------------------------------------------
# Database (REQUIRED)
# ---------------------------------------------------------------------------
DB_NAME=tradeclaw
DB_USER=tradeclaw
DB_PASSWORD=changeme # REQUIRED — generate: openssl rand -hex 16
# ---------------------------------------------------------------------------
# App (REQUIRED)
# ---------------------------------------------------------------------------
APP_PORT=3000
APP_URL=http://localhost:3000
AUTH_SECRET=changeme # REQUIRED — generate: openssl rand -hex 32
# ---------------------------------------------------------------------------
# Scanner (optional — defaults shown)
# ---------------------------------------------------------------------------
# SCAN_INTERVAL=60 # seconds between scans
# SCAN_INSTRUMENTS=all # or comma-separated: BTCUSD,ETHUSD,XAUUSD
# ---------------------------------------------------------------------------
# Telegram Alerts (optional)
# ---------------------------------------------------------------------------
# TELEGRAM_BOT_TOKEN=
# TELEGRAM_FREE_CHANNEL_ID=
# ---------------------------------------------------------------------------
# Stripe Payments (optional)
# ---------------------------------------------------------------------------
# STRIPE_SECRET_KEY=
# STRIPE_PUBLISHABLE_KEY=
# STRIPE_WEBHOOK_SECRET=