Files
stack/apps/orchestrator/.env.example
Jason Woltje e808487725
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
feat(M6): Set up orchestrator service foundation
Add NestJS-based orchestrator service structure for M6-AgentOrchestration.

Changes:
- Migrate from Express to NestJS architecture
- Add health check endpoint module
- Add placeholder modules: coordinator, git, killswitch, monitor, queue, spawner, valkey
- Update configuration for NestJS
- Update lockfile for new dependencies

This is foundational work for M6-AgentOrchestration milestone.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-02-02 13:16:19 -06:00

23 lines
394 B
Plaintext

# Orchestrator Configuration
ORCHESTRATOR_PORT=3001
NODE_ENV=development
# Valkey
VALKEY_HOST=localhost
VALKEY_PORT=6379
VALKEY_URL=redis://localhost:6379
# Claude API
CLAUDE_API_KEY=your-api-key-here
# Docker
DOCKER_SOCKET=/var/run/docker.sock
# Git
GIT_USER_NAME="Mosaic Orchestrator"
GIT_USER_EMAIL="orchestrator@mosaicstack.dev"
# Security
KILLSWITCH_ENABLED=true
SANDBOX_ENABLED=true