0c1047d390
- Go backend with SQLite, JWT auth, file CRUD - Vue 3 frontend with split/raw/WYSIWYG editor modes - Markdown preview (marked, GFM) - Formatting toolbar + keyboard shortcuts - File tree with search, create, delete - Light/dark theme toggle - Admin panel (user management) - Preferences (timezone, theme, default mode) - Shared documents section (placeholder) - Export: PDF, HTML, MD - Build daemon (Python, stdlib only) - Build job queue API - Docker deployment
14 lines
278 B
YAML
14 lines
278 B
YAML
version: "3.8"
|
|
services:
|
|
markdownhub:
|
|
build: .
|
|
ports:
|
|
- "8090:8080"
|
|
volumes:
|
|
- ./data:/app/data
|
|
environment:
|
|
- MH_SECRET=change-me-to-random-secret
|
|
- MH_AI_ENDPOINT=http://litellm:4000
|
|
- MH_AI_API_KEY=
|
|
restart: unless-stopped
|