diff options
author | Eddy Pedroni <epedroni@pm.me> | 2025-07-24 17:25:31 +0200 |
---|---|---|
committer | Eddy Pedroni <epedroni@pm.me> | 2025-07-24 17:27:09 +0200 |
commit | 8d3dfa11baa8b2be32e0a9d31575469e1a7037b8 (patch) | |
tree | acb766d74b925f8fb59325919b08fcb42148f104 /deployment/start-daemon.sh | |
parent | 7f85c4bbdbf52cddcf3be7b39c7d645c7fe80388 (diff) |
Add deployment files
Diffstat (limited to 'deployment/start-daemon.sh')
-rw-r--r-- | deployment/start-daemon.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/deployment/start-daemon.sh b/deployment/start-daemon.sh new file mode 100644 index 0000000..1021fa5 --- /dev/null +++ b/deployment/start-daemon.sh @@ -0,0 +1,13 @@ +#!/usr/bin/bash + +# Wait until git server is reachable +until ping -c1 git.0xf7.com >/dev/null 2>&1; do :; done + +# Get latest version +git pull + +# Build daemon +make build-daemon + +# Start +./daemon/build/midi-router-daemon |