Files
hive/docker-compose.override.yml.example
T
Timothy 689db5ab33
Release / Create Release (push) Waiting to run
Release / Publish Docker Images (push) Blocked by required conditions
feat: initial open-source release
Beeline - Open-source LLM observability and control platform

Features:
- Real-time agent monitoring dashboard
- LLM metrics and analytics (TimescaleDB)
- Cost tracking and budget controls
- WebSocket event streaming
- MCP (Model Context Protocol) server

Apache 2.0 License
2026-01-13 20:13:05 -08:00

38 lines
929 B
Plaintext

# Development overrides
# Copy this file to docker-compose.override.yml for local development
#
# Usage:
# cp docker-compose.override.yml.example docker-compose.override.yml
# docker compose up
#
# This enables:
# - Hot reload for both frontend and backend
# - Source code mounted as volumes
# - Debug ports exposed
# - Development environment settings
services:
honeycomb:
build:
context: ./honeycomb
dockerfile: Dockerfile.dev
volumes:
- ./honeycomb/src:/app/src:ro
- ./honeycomb/public:/app/public:ro
- ./honeycomb/index.html:/app/index.html:ro
environment:
- VITE_API_URL=http://localhost:4000
hive:
build:
context: ./hive
dockerfile: Dockerfile.dev
volumes:
- ./hive/src:/app/src:ro
environment:
- NODE_ENV=development
- LOG_LEVEL=debug
# Uncomment to enable Node.js debugging
# ports:
# - "9229:9229"