first commit

This commit is contained in:
Ramiro Paz
2026-03-11 10:54:11 -03:00
parent bfeecb334a
commit aa0525a78c
85 changed files with 14079 additions and 0 deletions

33
tools/deploy.sh Executable file
View File

@ -0,0 +1,33 @@
#!/bin/sh
while getopts "a:" opt; do
case $opt in
a)
ssh_alias=$OPTARG
;;
\?)
echo "Invalid option: -$OPTARG" >&2
exit 1
;;
esac
done
# Check if the alias is not empty
if [ -z "$ssh_alias" ]; then
echo "\033[31mPlease input an ssh alias. Usage: deploy.sh -a {ssh_alias}"
exit 1
fi
# Check if the build exists
if [ ! -f "build/out/distribution/qfixpt.gz" ]; then
echo "\033[31mFile build/out/distribution/qfixpt.gz does not exist. Run make build"
exit 1
fi
# Copy zipped binary
scp build/out/distribution/qfixpt.gz "$ssh_alias":/home/quantex/qfixpt/
# Unzip the binary. Then systemd restart it automatically on file change.
ssh "$ssh_alias" "chown quantex:quantex -R /home/quantex/qfixpt;chmod +x /home/quantex/qfixpt/unzip-qfixpt.sh; /home/quantex/qfixpt/unzip-qfixpt.sh"