freetak/scripts/start_freetak.sh
Merith-TK bfc790355a
All checks were successful
Build Docker Image on Commit / build-and-publish (push) Successful in 16m30s
it builds, but does it run?
2025-07-04 22:27:34 +01:00

14 lines
289 B
Bash
Executable file

#!/bin/bash
set -e
# Source the virtual environment
source ${FTS_VENV}/bin/activate
# Change to the configuration directory
cd /opt/FreeTAKHub-Installation/${CFG_RPATH}
# Start FreeTAKServer
echo "Starting FreeTAKServer..."
python3 -m FreeTAKServer.controllers.services.FTS
deactivate