- Updated configuration and deployment files - Improved system architecture and components - Enhanced documentation and testing - Fixed various issues and added new features 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
32 lines
820 B
Plaintext
32 lines
820 B
Plaintext
# BZZZ Minimal Container Configuration
|
|
# Copy this file to bzzz.minimal.env and customize as needed
|
|
|
|
# Basic Agent Configuration
|
|
BZZZ_AGENT_ID=bzzz-docker-01
|
|
BZZZ_SPECIALIZATION=general_developer
|
|
BZZZ_MAX_TASKS=3
|
|
|
|
# Network Ports (adjust if ports are already in use)
|
|
BZZZ_P2P_PORT=9000
|
|
BZZZ_API_PORT=8080
|
|
BZZZ_HEALTH_PORT=8081
|
|
|
|
# Logging
|
|
LOG_LEVEL=info
|
|
# DEBUG=1 # Uncomment to enable debug logging
|
|
|
|
# DHT and P2P Settings
|
|
BZZZ_DHT_ENABLED=true
|
|
# BZZZ_BOOTSTRAP_PEERS= # Comma-separated list of bootstrap peers
|
|
|
|
# AI Configuration
|
|
OLLAMA_ENDPOINT=http://host.docker.internal:11434
|
|
|
|
# Licensing (if required)
|
|
# LICENSE_EMAIL=your.email@example.com
|
|
# LICENSE_KEY=your-license-key-here
|
|
CLUSTER_ID=docker-cluster
|
|
|
|
# Optional: Override default resource limits in docker-compose.minimal.yml
|
|
# MEMORY_LIMIT=1G
|
|
# CPU_LIMIT=1.0 |