Merge pull request #264 from outis1one/claude/traccar-installation-issues-3scwv7

Move ai-stack and paintplus vendored source under vendor/
This commit is contained in:
Outis
2026-08-04 09:10:57 -04:00
committed by GitHub
454 changed files with 9 additions and 6 deletions
+3 -3
View File
@@ -1,8 +1,8 @@
#!/bin/bash
# services/ai-stack.sh — Local AI Stack: a full self-hosted AI environment.
#
# Vendored from github.com/outis1one/local-ai into this repo under ./ai-stack and
# copied to ~/docker/ai-stack at install time (no network clone). Bundles:
# Vendored from github.com/outis1one/local-ai into this repo under vendor/ai-stack
# and copied to ~/docker/ai-stack at install time (no network clone). Bundles:
# Ollama · Open WebUI · RAG + MCP servers · ChromaDB · SearXNG · Kiwix ·
# Gitea · InvokeAI · ComfyUI · Portainer
#
@@ -26,7 +26,7 @@ install_ai-stack() {
# Vendored application source lives in this repo at <repo>/ai-stack
local SELF_DIR SRC_DIR
SELF_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
SRC_DIR="$(cd "$SELF_DIR/.." && pwd)/ai-stack"
SRC_DIR="$(cd "$SELF_DIR/.." && pwd)/vendor/ai-stack"
local AS_DIR="$DOCKER_DIR/ai-stack"
+3 -3
View File
@@ -2,8 +2,8 @@
# services/paintplus.sh — PaintPlus: self-hosted AI photo editor. Paint a mask over
# an object, describe the change, and AI replaces only that region.
#
# The full application source is vendored in this repo under ./paintplus and is
# copied to ~/docker/paintplus/src at install time (no network clone).
# The full application source is vendored in this repo under vendor/paintplus
# and is copied to ~/docker/paintplus/src at install time (no network clone).
# Based on EditmaskwithAI (github.com/outis1one/EditmaskwithAI).
# Part of the modular post-install system (sourced by setup.sh).
#
@@ -25,7 +25,7 @@ install_paintplus() {
# Vendored application source lives in this repo at <repo>/paintplus
local SELF_DIR SRC_DIR
SELF_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
SRC_DIR="$(cd "$SELF_DIR/.." && pwd)/paintplus"
SRC_DIR="$(cd "$SELF_DIR/.." && pwd)/vendor/paintplus"
local PP_DIR="$DOCKER_DIR/paintplus"
local APP_DIR="$PP_DIR/src"