forked from claude-did-this/claude-hub
34 lines
845 B
Plaintext
34 lines
845 B
Plaintext
# Application Configuration
|
|
NODE_ENV=development
|
|
PORT=3003
|
|
|
|
# GitHub Webhook Settings
|
|
GITHUB_WEBHOOK_SECRET=your_webhook_secret_here
|
|
GITHUB_TOKEN=ghp_your_github_token_here
|
|
|
|
# Bot Configuration (REQUIRED) - the GitHub mention that triggers the bot
|
|
BOT_USERNAME=ClaudeBot
|
|
|
|
# Default GitHub Configuration for CLI
|
|
DEFAULT_GITHUB_OWNER=your-org
|
|
DEFAULT_GITHUB_USER=your-username
|
|
DEFAULT_BRANCH=main
|
|
|
|
# Claude API Settings
|
|
CLAUDE_API_AUTH_REQUIRED=1
|
|
CLAUDE_API_AUTH_TOKEN=your_auth_token_here
|
|
|
|
# Container Settings
|
|
CLAUDE_USE_CONTAINERS=1
|
|
CLAUDE_CONTAINER_IMAGE=claudecode:latest
|
|
REPO_CACHE_DIR=/tmp/repo-cache
|
|
REPO_CACHE_MAX_AGE_MS=3600000
|
|
|
|
# AWS Bedrock Credentials for Claude
|
|
AWS_ACCESS_KEY_ID=secret_key
|
|
AWS_SECRET_ACCESS_KEY=access_key
|
|
AWS_REGION=us-east-2
|
|
CLAUDE_CODE_USE_BEDROCK=1
|
|
ANTHROPIC_MODEL=us.anthropic.claude-3-7-sonnet-20250219-v1:0
|
|
|