-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker.env.example
More file actions
34 lines (26 loc) · 928 Bytes
/
docker.env.example
File metadata and controls
34 lines (26 loc) · 928 Bytes
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
# Docker Environment Configuration
# Copy this file to docker.env and update with your values
# Server Configuration
NODE_ENV=production
PORT=3000
# Documentation Sources (at least one required)
DOCS_ELECTRON_URL=https://www.electronjs.org
DOCS_REACT_URL=https://react.dev
DOCS_NODE_URL=https://nodejs.org
DOCS_GITHUB_URL=https://docs.github.com
# GitHub Integration (optional but recommended)
# For security, GitHub token should be stored in Docker secrets
# Create file: echo "ghp_your_token_here" > secrets/github_token.txt
# Get token from: https://github.com/settings/tokens
# Caching Configuration
CACHE_TTL=3600
CACHE_STORAGE=both
# Performance Configuration
RATE_LIMIT_PER_MINUTE=60
# Logging Configuration
LOG_LEVEL=info
# Optional: Database Configuration (if using PostgreSQL)
# DB_USER=mcp
# DB_PASSWORD=your_secure_password_here
# Optional: Redis Configuration (if using Redis)
# REDIS_URL=redis://redis:6379