feat(settings): add dedicated About page with version info

- Add AboutTab.svelte with app branding, version display, update checking
- Show update status and download link when new version available
- Include links to GitHub repo and issue tracker
- Display tech stack badges and license info
- Remove About section from GeneralTab (now separate tab)

Also improves development configuration:
- justfile now reads PORT, DEV_PORT, LLAMA_PORT, OLLAMA_PORT from .env
- docker-compose.dev.yml uses env var substitution
- Add dev-build and dev-rebuild recipes for Docker
- Update .env.example with all configurable variables
This commit is contained in:
2026-01-22 12:39:19 +01:00
parent 29c70eca17
commit 7fe4286d34
8 changed files with 267 additions and 45 deletions

View File

@@ -1,6 +1,8 @@
name: vessel-dev
# Development docker-compose - uses host network for direct Ollama access
# Reads configuration from .env file
services:
frontend:
build:
@@ -12,8 +14,8 @@ services:
- ./frontend:/app
- /app/node_modules
environment:
- OLLAMA_API_URL=http://localhost:11434
- BACKEND_URL=http://localhost:9090
- OLLAMA_API_URL=${OLLAMA_API_URL:-http://localhost:11434}
- BACKEND_URL=${BACKEND_URL:-http://localhost:9090}
depends_on:
- backend
@@ -26,4 +28,4 @@ services:
- ./backend/data:/app/data
environment:
- GIN_MODE=release
command: ["./server", "-port", "9090", "-db", "/app/data/vessel.db", "-ollama-url", "http://localhost:11434"]
command: ["./server", "-port", "${PORT:-9090}", "-db", "${DB_PATH:-/app/data/vessel.db}", "-ollama-url", "${OLLAMA_URL:-http://localhost:11434}"]