fix(storyteller): copy migrations, sqlite and .env to standalone dir

- cp migrations/ and sqlite/ (dlopen needs real files, not symlinks)
- symlink .env into standalone working directory
- Fixes standalone mode missing database and config files
This commit is contained in:
CanbiZ (MickLesk)
2026-03-25 14:17:24 +01:00
parent ba21020873
commit 1c939ff0cc
2 changed files with 4 additions and 1 deletions

View File

@@ -10,7 +10,7 @@ APP="Storyteller"
var_tags="${var_tags:-media;ebook;audiobook}"
var_cpu="${var_cpu:-4}"
var_ram="${var_ram:-8192}"
var_disk="${var_disk:-16}"
var_disk="${var_disk:-20}"
var_os="${var_os:-debian}"
var_version="${var_version:-13}"
var_unprivileged="${var_unprivileged:-1}"

View File

@@ -60,6 +60,9 @@ cp -r /opt/storyteller/web/.next/static /opt/storyteller/web/.next/standalone/we
if [[ -d /opt/storyteller/web/public ]]; then
cp -r /opt/storyteller/web/public /opt/storyteller/web/.next/standalone/web/public
fi
cp -r /opt/storyteller/web/migrations /opt/storyteller/web/.next/standalone/web/migrations
cp -r /opt/storyteller/web/sqlite /opt/storyteller/web/.next/standalone/web/sqlite
ln -sf /opt/storyteller/.env /opt/storyteller/web/.next/standalone/web/.env
msg_ok "Built Storyteller"
msg_info "Creating Service"