From 7f4b2ff89e06db300206c97dd4db0ba6b403aa61 Mon Sep 17 00:00:00 2001 From: acknologia <64101826+acknologia@users.noreply.github.com> Date: Fri, 1 May 2026 02:11:15 -0400 Subject: [PATCH] stirling pdf install script --- .../apps/install-scripts/curated/index.md | 1 + docs/public/install-scripts/stirling-pdf.json | 60 +++++++++++++++++++ 2 files changed, 61 insertions(+) create mode 100644 docs/public/install-scripts/stirling-pdf.json diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 66a848cb..a647a567 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -19,5 +19,6 @@ | `radarr` | [radarr.json](/install-scripts/radarr.json) | 1.2 KB | 2025-12-04 | | `scrutiny` | [scrutiny.json](/install-scripts/scrutiny.json) | 1.3 KB | 2026-03-15 | | `sonarr` | [sonarr.json](/install-scripts/sonarr.json) | 1.2 KB | 2025-12-04 | +| `stirling-pdf` | [stirling-pdf.json](/install-scripts/stirling-pdf.json) | 1.8 KB | 2026-05-01 | | `syncthing` | [syncthing.json](/install-scripts/syncthing.json) | 2.1 KB | 2026-03-15 | diff --git a/docs/public/install-scripts/stirling-pdf.json b/docs/public/install-scripts/stirling-pdf.json new file mode 100644 index 00000000..e7d32e27 --- /dev/null +++ b/docs/public/install-scripts/stirling-pdf.json @@ -0,0 +1,60 @@ +{ + "version": 3, + "script": { + "version": "1.0.0", + "changeLog": "Initial Script" + }, + "requirements": { + "locations": ["ApplicationsPerformance", "Documents", "Downloads"], + "specifications": [ + "2CORE", "1024MB"], + "permissions": [ + "READ_WRITE_LOCATIONS" + ], + "ports": [30124] + }, + "ensure_directories_exists": [ + { + "path": "$LOCATION(ApplicationsPerformance)", + "network_share": true + }, + { + "path": "$LOCATION(Downloads)", + "network_share": true + }, + { + "path": "$LOCATION(Documents)", + "network_share": true + }, + "$LOCATION(Documents)/PDFs", + "$LOCATION(ApplicationsPerformance)/stirling_pdf/logs", + "$LOCATION(ApplicationsPerformance)/stirling_pdf/config", + "$LOCATION(ApplicationsPerformance)/stirling_pdf/pipeline", + "$LOCATION(ApplicationsPerformance)/stirling_pdf/tesseract", + "$LOCATION(ApplicationsPerformance)/stirling_pdf/custom_files" + ], + "app_values": { + "storage": { + "pipeline": "$HOST_PATH($LOCATION(ApplicationsPerformance)/stirling_pdf/pipeline)", + "configs": "$HOST_PATH($LOCATION(ApplicationsPerformance)/stirling_pdf/config)", + "logs": "$HOST_PATH($LOCATION(ApplicationsPerformance)/stirling_pdf/logs)", + "custom_files": "$HOST_PATH($LOCATION(ApplicationsPerformance)/stirling_pdf/custom_files)", + "tesseract_data": "$HOST_PATH($LOCATION(ApplicationsPerformance)/stirling_pdf/tesseract)", + "additional_storage": [ + "$MOUNTED_HOST_PATH($LOCATION(Documents)/PDFs, /PDFs)", + "$MOUNTED_HOST_PATH($LOCATION(Downloads), /downloads)" + ] + }, + "network": { + "web_port": { + "port_number": 30124 + } + }, + "resources": { + "limits": { + "cpus": 4, + "memory": "$MEMORY(10%, 2048)" + } + } + } +} \ No newline at end of file