Files
NetAlertX/install/production-filesystem/services/check-app.sh
2025-10-17 16:36:48 -04:00

8 lines
197 B
Bash

#!/bin/sh
# app-check.sh - Ensures /app/api/table_settings.json exists
if [ ! -f /app/api/table_settings.json ]; then
# mkdir -p /app/api
# echo -ne '{}' > /app/api/table_settings.json
fi