2 Commits
dev ... 0.1.1

Author SHA1 Message Date
2a57e324ca Error correction 2025-10-11 17:10:38 -04:00
21b8be9d84 Deployment stuff 2025-10-11 15:09:04 -04:00
5 changed files with 26 additions and 3 deletions

1
.gitignore vendored
View File

@@ -1 +1,2 @@
.env .env
*.tar.gz

View File

@@ -0,0 +1,10 @@
#!/bin/bash
if [ -x "$(command -v docker)" ]; then
docker load -i tam3-webclient.tar.gz
elif [ -x "$(command -v podman)" ]; then
podman load -i tam3-webclient.tar.gz
else
echo "Neither Docker nor Podman are installed. Please install whichever you prefer and try again."
exit 1
fi

View File

@@ -0,0 +1,12 @@
#!/bin/bash
if [ -x "$(command -v docker)" ]; then
docker load -i tam3-api.tar.gz
docker load -i tam3-db.tar.gz
elif [ -x "$(command -v podman)" ]; then
podman load -i tam3-api.tar.gz
podman load -i tam3-db.tar.gz
else
echo "Neither Docker nor Podman are installed. Please install whichever you prefer and try again."
exit 1
fi