14 lines
193 B
Bash
Executable File
14 lines
193 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Start FTS services
|
|
cd /home/fts
|
|
|
|
# Start the API service
|
|
python3 -m FreeTAKServer.controllers.services.FTS &
|
|
|
|
# Start the UI
|
|
cd /home/fts/FreeTAKServer-UI
|
|
python3 run.py &
|
|
|
|
wait
|