Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
cache-dependency-path: backend/package-lock.json

- name: Install backend dependencies
run: npm ci
run: npm ci --legacy-peer-deps

- name: Generate Prisma client
run: npm run db:generate
Expand Down
17 changes: 17 additions & 0 deletions backend/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,23 @@ HORIZON_URL=https://horizon-testnet.stellar.org
# but no payments are sent automatically.
DRIP_SCHEDULER_ENABLED=false

# ──────────────────────────────────────
# Redis (#775, #776)
# ──────────────────────────────────────
# REDIS_URL — When set, enables Redis-backed leaderboard cache and BullMQ
# webhook delivery queue. When unset, falls back to in-process cache and
# DB-polled webhook processor (fine for local dev).
# REDIS_URL=redis://localhost:6379

# ──────────────────────────────────────
# Database Connection Pool (#778)
# ──────────────────────────────────────
# DATABASE_POOL_SIZE — Prisma connection pool size (default: 10).
# Recommended: 20 for production containers.
DATABASE_POOL_SIZE=20
# DATABASE_POOL_TIMEOUT — Seconds to wait for a connection before 503 (default: 10).
DATABASE_POOL_TIMEOUT=10

# Soroban Contract Event Indexer
# ────────────────────────────────────────────────────────────────────────────
# SOROBAN_CONTRACT_ID — Required to enable the contract event indexer.
Expand Down
Loading
Loading