mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2025-12-07 09:36:05 -08:00
7 lines
219 B
Bash
7 lines
219 B
Bash
#!/bin/bash
|
|
echo "Initializing backend..."
|
|
# Future backend initialization steps can go here.
|
|
# For now, we'll just ensure permissions are correct.
|
|
chown -R nginx:www-data "${NETALERTX_APP}"
|
|
echo "Backend initialized."
|