Watch
1
0
Fork
You've already forked souveraine
0

the rig ships with the repo; it is self-hosted

This commit is contained in:
Fimeg 2026-08-05 20:11:49 -04:00
commit fe48bb76c5
35 changed files with 2259 additions and 6 deletions

View file

@ -1,12 +1,12 @@
#!/usr/bin/env bash
# Put the Live2D rig where the face host expects it.
#
# The rig is licensed assets and stays out of every repo (TASK-59) — so it is
# copied onto a device, never cloned with the source. Without this the host has
# an index.html referring to files that are not there, which is the "missing
# assets/face" every fresh checkout sees.
# The rig lives in the repo (self-hosted; TASK-59's caution was about anything
# PUBLIC, and the Codeberg mirror is retired). This only copies it to where the
# host reads it at runtime.
set -euo pipefail
SRC="${1:-$HOME/Downloads/blog/Live2dHistoire/live2d}"
HERE_EARLY="$(cd "$(dirname "$0")/.." && pwd)"
SRC="${1:-$HERE_EARLY/assets/face/live2d}"
DEST="${FACE_DIR:-$HOME/.souveraine/face}"
HERE="$(cd "$(dirname "$0")/.." && pwd)"