Initial version of the E-Invoice solution of JR IT Services

This commit is contained in:
2026-02-16 17:02:03 +01:00
commit e0c15fc7f2
36 changed files with 1407 additions and 0 deletions

12
scripts/arch_install.sh Normal file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -euo pipefail
echo "[1/3] Installing Java (needed for Mustang combine/validate)"
sudo pacman -S --needed jre-openjdk-headless
echo "[2/3] Installing libs for WeasyPrint (PDF rendering)"
sudo pacman -S --needed cairo pango gdk-pixbuf2 libffi
echo "[3/3] Optional fallback: wkhtmltopdf"
echo "Run if you want fallback PDF renderer:"
echo " sudo pacman -S --needed wkhtmltopdf"

View File

@@ -0,0 +1,4 @@
#!/usr/bin/env bash
set -euo pipefail
echo "Use the built-in installer instead:"
echo " jr-einvoice setup-mustang --version 2.22.0"