Git Repository

Stackyard

Stackyard scannt lokale Entwicklungsordner und bündelt Projekte, Git-Status, TODOs, Toolchains, Docker-Compose-Setups, Datei- und Launcher-Funktionen sowie Operations-Informationen in einer lokalen WebUI.

Projektseite ↗
HTTPShttps://zanvex.de/git/stackyard.git

app/example.config.yaml

Zum Verzeichnis
server:
  listen: "127.0.0.1:8799"

database:
  path: "./stackyard.db"

monitoring:
  # Aktualisierung von Port- und HTTP-Health-Zuständen in der Operations-Ansicht.
  refresh_seconds: 10

roots:
  - name: "DEV"
    path: "W:/"

scanner:
  max_depth: 2
  ignore_dirs:
    - node_modules
    - .venv
    - venv
    - vendor
    - target
    - dist
    - build
    - .git
    - _ALT

launchers:
  vscode:
    enabled: true
    command: "code"
    # Optional for WSL/Windows when `code` is not in PATH:
    # command: '"/mnt/c/Users/webma/AppData/Local/Programs/Microsoft VS Code/Code.exe"'
  sublime:
    enabled: true
    command: "subl"
    # Optional for WSL/Windows when `subl` is not in PATH:
    # command: '"/mnt/c/Program Files/Sublime Text/sublime_text.exe"'
  terminal:
    enabled: true
    command: ""
    # Optional custom terminal launcher:
    # command: '"/mnt/c/Windows/System32/cmd.exe" /c start "" cmd.exe /K cd /d'
  explorer:
    enabled: true
    command: ""
    # Optional custom explorer launcher:
    # command: '"/mnt/c/Windows/explorer.exe"'