Move ai-stack and paintplus vendored source under vendor/
Matches the existing vendor/easy-asterisk convention (used by services/asterisk.sh) instead of two one-off top-level directories that cluttered the repo root and didn't look like anything else next to setup.sh, lib/, services/, extras/. Only the two services' own SRC_DIR path resolution and header comments needed updating — nothing else in the repo referenced the old ./ai-stack / ./paintplus paths. Also documents vendor/ in README.md's Layout section.
This commit is contained in:
@@ -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"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user