689db5ab33
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
38 lines
929 B
Plaintext
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"
|