# Docker Compose service name for development environment DOCKER_SERVICE_NAME={{projectName}} # Configure if you plan to use Anthropic Models in your LLM prompts ANTHROPIC_API_KEY=credential:anthropic.api_key # Configure if you plan to use OpenAI in your LLM prompts OPENAI_API_KEY=credential:openai.api_key # --- Host port overrides (for running multiple dev stacks) --- # Only the host-side port changes; inter-service traffic (e.g. worker -> Temporal # at temporal:7233) is unaffected. # OUTPUT_API_HOST_PORT=3001 # OUTPUT_TEMPORAL_UI_HOST_PORT=8080 # OUTPUT_TEMPORAL_HOST_PORT=7233 # --- API connection --- # If OUTPUT_API_URL is set, it overrides OUTPUT_API_HOST_PORT. # Use OUTPUT_API_URL for remote/staging servers; use OUTPUT_API_HOST_PORT for local port shifts. # OUTPUT_API_URL=http://localhost:3001 # --- Project isolation --- # Compose prefixes named volumes with the project name, so changing # DOCKER_SERVICE_NAME creates fresh volumes and leaves the previous ones behind. # Run `docker volume ls --filter name=` to find orphaned # volumes and `docker volume rm` to remove them.