Self-contained HTML-Kanban als operative Single Source of Truth für alle laufenden Projekte. Visualisiert das Ringsystem. Stack: Vanilla HTML/CSS/JS, localStorage, kein Build, kein Backend Server: ~/dev/kanban/server.sh (Python http.server auf Port 8765) Spec: ~/dev/kanban/SPEC.md 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
753 B
Bash
Executable File
20 lines
753 B
Bash
Executable File
#!/bin/bash
|
|
# Kanban Local Server
|
|
#
|
|
# Static-File-Server aus dem Home-Verzeichnis. Damit funktionieren
|
|
# der eingebaute MD-Viewer und alle file://-Referenzen ohne CORS-Probleme.
|
|
#
|
|
# Aufruf:
|
|
# ~/dev/kanban/server.sh # läuft im Vordergrund
|
|
# ~/dev/kanban/server.sh & # Hintergrund (nohup für persist nach Logout)
|
|
# pkill -f "http.server 8765" # zum Beenden
|
|
#
|
|
# Kanban dann öffnen unter: http://localhost:8765/dev/kanban/index.html
|
|
# (Backwards-Compat: http://localhost:8765/.kanban/index.html funktioniert über Symlink)
|
|
|
|
set -e
|
|
cd ~
|
|
echo "Kanban-Server läuft auf http://localhost:8765/dev/kanban/index.html"
|
|
echo "Stop: Ctrl-C · Hintergrund: ~/dev/kanban/server.sh &"
|
|
exec python3 -m http.server 8765 --bind 127.0.0.1
|