Gym Graphs allows users to track their gym progress with the help of graphs. The app allows users to add new exercises, organize their exercises with a dashboard and add new data for each exercise. The app will calculate an estimated one rep max given the number of repetitions and the weight lifted.
live website: https://gym-graphs.com
devenv updocker build -t gym-graphs .
docker run -p 8000:8000 \
-e PORT=8000 \
-e DATABASE_URL="postgres://user:pass@host:5432/gym_graphs" \
-e APP_ENV=production \
-e AWS_REGION=eu-west-1 \
-e AWS_ACCESS_KEY_ID=... \
-e AWS_SECRET_ACCESS_KEY=... \
-e SES_FROM_ADDRESS=no-reply@example.com \
gym-graphs