A bodyweight tracking application.
Demo @ https://gofit.basmaas.nl.
Username: [email protected]
Password: gofit123
It's running on the free tier of Azure WebApps, so expect slow performance.
GID=$(id -g)
UID=$(id -u)
USERS='[{"email": "[email protected]", "password": "gofit123"}, {"email": "[email protected]", "password": "gofit123"}]'
DATA_DIR="./data"
mkdir ${DATA_DIR}
docker run \
--rm \
-d \
--user ${UID}:${GID} \
-e USERS="${USERS}" \
--name gofit \
-v ${DATA_DIR}:/data \
-p 8080:8080 \
ghcr.io/bamaas/gofit:0.0.1
docker logs -f gofit
A Helm chart is available.
helm repo add gofit https://bamaas.github.io/GoFit/
helm repo update
helm install gofit gofit/gofit
Start the devcontainer from within VSCode and you are good to go.