409e92d6ae
Dependency Compatibility Check / Fresh Install Dependency Check (push) Waiting to run
Build and Publish n8n Docker Image / test-image (push) Blocked by required conditions
Build and Publish n8n Docker Image / build-and-push (push) Waiting to run
Build and Publish n8n Docker Image / create-release (push) Blocked by required conditions
Build and Push Docker Images / Build Docker Image (push) Has been cancelled
Build and Push Docker Images / Build Railway Docker Image (push) Has been cancelled
Automated Release / Detect Version Change (push) Waiting to run
Automated Release / Generate Release Notes (push) Blocked by required conditions
Automated Release / Create GitHub Release (push) Blocked by required conditions
Automated Release / Package MCPB Bundle (push) Blocked by required conditions
Automated Release / Build and Verify (push) Blocked by required conditions
Automated Release / Publish to NPM (push) Blocked by required conditions
Automated Release / Build and Push Docker Images (push) Blocked by required conditions
Secret Scan / secretlint (push) Waiting to run
Test Suite / test (push) Waiting to run
Test Suite / cjs-runtime (push) Waiting to run
Test Suite / publish-results (push) Blocked by required conditions
Automated Release / Update Documentation (push) Blocked by required conditions
Automated Release / Notify Release Completion (push) Blocked by required conditions
36 lines
917 B
Bash
36 lines
917 B
Bash
# n8n-mcp Docker Environment Configuration
|
|
# Copy this file to .env and customize for your deployment
|
|
|
|
# === n8n Configuration ===
|
|
# n8n basic auth (change these in production!)
|
|
N8N_BASIC_AUTH_ACTIVE=true
|
|
N8N_BASIC_AUTH_USER=admin
|
|
N8N_BASIC_AUTH_PASSWORD=changeme
|
|
|
|
# n8n host configuration
|
|
N8N_HOST=localhost
|
|
N8N_PORT=5678
|
|
N8N_PROTOCOL=http
|
|
N8N_WEBHOOK_URL=http://localhost:5678/
|
|
|
|
# n8n encryption key (generate with: openssl rand -hex 32)
|
|
N8N_ENCRYPTION_KEY=
|
|
|
|
# === n8n-mcp Configuration ===
|
|
# MCP server port
|
|
MCP_PORT=3000
|
|
|
|
# MCP authentication token (generate with: openssl rand -hex 32)
|
|
MCP_AUTH_TOKEN=
|
|
|
|
# n8n API key for MCP to access n8n
|
|
# Get this from n8n UI: Settings > n8n API > Create API Key
|
|
N8N_API_KEY=
|
|
|
|
# Logging level (debug, info, warn, error)
|
|
LOG_LEVEL=info
|
|
|
|
# === GitHub Container Registry (for CI/CD) ===
|
|
# Only needed if building custom images
|
|
GITHUB_REPOSITORY=czlonkowski/n8n-mcp
|
|
VERSION=latest |