1 Commits
dev ... 0.1.0

Author SHA1 Message Date
21b8be9d84 Deployment stuff 2025-10-11 15:09:04 -04:00
3 changed files with 24 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1 +1,2 @@
.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