Mercurial
view love/docker-compose.yml @ 278:8d560f50ed4c
Improve infinite canvas interactions and browser chrome
Render Lucide icons directly with Raylib, add searchable icon browsing, robust text editing, entity lifecycle animations, z-order-safe input, semantic themes, and animated editable browser controls. Document rendering, pinning, context, and component extension for future agents.
Co-authored-by: Copilot <[email protected]>
Copilot-Session: f68442b1-fa8f-46a0-9689-81710613bbd4
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Mon, 17 Aug 2026 22:16:14 -0700 |
| parents | cf9caa4abc3e |
| children |
line wrap: on
line source
version: '3.9' services: frontend: build: context: ./epi dockerfile: Dockerfile ports: - "5173:5173" volumes: - ./epi:/app - /app/node_modules environment: - NODE_ENV=development - VITE_API_BASE_URL=http://localhost:8000 command: npm run dev -- --host 0.0.0.0 --port 5173 depends_on: - backend backend: build: context: ./poppy dockerfile: Dockerfile ports: - "8000:8000" volumes: - ./poppy:/app environment: - REDIS_URL=redis://redis:6379/0 - ASYNC_DATABASE_URL=sqlite+aiosqlite:///./poppy.db - SYNC_DATABASE_URL=sqlite:///./poppy.db - XAI_API_KEY=NO_API - PYTHONUNBUFFERED=1 command: > uvicorn main:app --host 0.0.0.0 --port 8000 --reload --reload-exclude "*.pyc" --reload-exclude "__pycache__" --reload-exclude "logs" --reload-exclude "media" depends_on: - redis redis: image: redis:7-alpine ports: - "7777:6379" command: redis-server --appendonly yes volumes: - redis-data:/data volumes: redis-data: