Deployment stuff

This commit is contained in:
2025-10-11 15:09:04 -04:00
parent b4bec2e728
commit 21b8be9d84
3 changed files with 24 additions and 1 deletions

3
.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