A previous `git pull --rebase origin main` dropped 177 local commits,
losing 3400+ files across admin-v2, backend, studio-v2, website,
klausur-service, and many other services. The partial restore attempt
(660295e2) only recovered some files.
This commit restores all missing files from pre-rebase ref 98933f5e
while preserving post-rebase additions (night-scheduler, night-mode UI,
NightModeWidget dashboard integration).
Restored features include:
- AI Module Sidebar (FAB), OCR Labeling, OCR Compare
- GPU Dashboard, RAG Pipeline, Magic Help
- Klausur-Korrektur (8 files), Abitur-Archiv (5+ files)
- Companion, Zeugnisse-Crawler, Screen Flow
- Full backend, studio-v2, website, klausur-service
- All compliance SDKs, agent-core, voice-service
- CI/CD configs, documentation, scripts
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
50 lines
1.1 KiB
YAML
50 lines
1.1 KiB
YAML
version: '3.8'
|
|
|
|
# BreakPilot LibreChat Frontend
|
|
# Startet LibreChat mit Custom Endpoint für vast.ai Mistral-7B
|
|
|
|
services:
|
|
# LibreChat - Chat Frontend
|
|
librechat:
|
|
image: ghcr.io/danny-avila/librechat-dev:latest
|
|
container_name: breakpilot-chat
|
|
ports:
|
|
- "3080:3080"
|
|
depends_on:
|
|
- mongodb
|
|
- meilisearch
|
|
restart: unless-stopped
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./librechat.yaml:/app/librechat.yaml:ro
|
|
- ./images:/app/client/public/images
|
|
- librechat_logs:/app/api/logs
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
|
|
# MongoDB - LibreChat Datenbank
|
|
mongodb:
|
|
image: mongo:7.0
|
|
container_name: breakpilot-mongo
|
|
restart: unless-stopped
|
|
volumes:
|
|
- mongodb_data:/data/db
|
|
command: mongod --noauth
|
|
|
|
# Meilisearch - Volltextsuche für Conversations
|
|
meilisearch:
|
|
image: getmeili/meilisearch:v1.7
|
|
container_name: breakpilot-search
|
|
restart: unless-stopped
|
|
environment:
|
|
- MEILI_NO_ANALYTICS=true
|
|
- MEILI_ENV=development
|
|
volumes:
|
|
- meilisearch_data:/meili_data
|
|
|
|
volumes:
|
|
mongodb_data:
|
|
meilisearch_data:
|
|
librechat_logs:
|