break apart services, fix startup

This commit is contained in:
Adam Outler
2025-10-15 18:18:30 -04:00
parent 5109a0881d
commit de92c9563e
10 changed files with 887 additions and 13 deletions

View File

@@ -0,0 +1,7 @@
#!/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