it builds, but does it run?
All checks were successful
Build Docker Image on Commit / build-and-publish (push) Successful in 16m30s

This commit is contained in:
Merith-TK 2025-07-04 22:27:34 +01:00
parent d93ecd2627
commit bfc790355a
10 changed files with 801 additions and 23 deletions

14
scripts/start_freetak.sh Executable file
View file

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