feat: initial import (exclude templates and runtime temp files)

This commit is contained in:
237899745
2026-02-27 15:21:15 +08:00
commit 0951732c7a
33 changed files with 11698 additions and 0 deletions

16
app/scripts/bootstrap.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env bash
set -euo pipefail
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
cd "$ROOT_DIR"
echo "[1/3] Installing Python dependencies..."
python3 -m pip install --user --break-system-packages -r requirements.txt
echo "[2/3] Pulling converter image..."
docker pull minidocks/libreoffice
echo "[3/3] Verifying converter image..."
docker image inspect minidocks/libreoffice >/dev/null
echo "Bootstrap complete. Converter image is ready."