architectural change 1

This commit is contained in:
Adam Outler
2025-09-24 16:29:15 -04:00
parent 3dd5c4bfcc
commit 29aa884836
13 changed files with 301 additions and 109 deletions

View File

@@ -0,0 +1,8 @@
#!/bin/bash
echo "Starting backend..."
cd "${NETALERTX_APP}" || exit
# Clear previous logs
echo '' > "${LOG_STDOUT}"
echo '' > "${LOG_STDERR}"
# Start the backend and redirect output
exec python3 -m server >> "${LOG_STDOUT}" 2>> "${LOG_STDERR}"