- Update package.json name to "vessel" - Update storage keys (vessel-settings, vessel IndexedDB) - Update Go module to vessel-backend with new imports - Update database path to vessel.db - Add new Vessel "V" icon (favicon + app icons) - Update all user-facing branding (titles, sidebar, settings) - Update docker-compose files with vessel naming and network - Change accent color from emerald to violet 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
30 lines
779 B
YAML
30 lines
779 B
YAML
name: vessel-dev
|
|
|
|
# Development docker-compose - uses host network for direct Ollama access
|
|
services:
|
|
frontend:
|
|
build:
|
|
context: ./frontend
|
|
dockerfile: Dockerfile.dev
|
|
# Use host network to access localhost:11434 and backend directly
|
|
network_mode: host
|
|
volumes:
|
|
- ./frontend:/app
|
|
- /app/node_modules
|
|
environment:
|
|
- OLLAMA_API_URL=http://localhost:11434
|
|
- BACKEND_URL=http://localhost:9090
|
|
depends_on:
|
|
- backend
|
|
|
|
backend:
|
|
build:
|
|
context: ./backend
|
|
dockerfile: Dockerfile
|
|
network_mode: host
|
|
volumes:
|
|
- ./backend/data:/app/data
|
|
environment:
|
|
- GIN_MODE=release
|
|
command: ["./server", "-port", "9090", "-db", "/app/data/vessel.db", "-ollama-url", "http://localhost:11434"]
|