Files
NetAlertX/install/production-filesystem/services/check-app.sh
2025-10-15 18:18:30 -04:00

8 lines
193 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