Hercules is a personal pet-project, which is a REST API for a workout management service.
- Exercise management
- Workout management
- Workout reminder
- ...
You can run the service on a local machine using Docker. See Dockerfile for details.
docker build -t hercules:1.0 --platform linux/amd64 -f Docker/Dockerfile .See example.
docker run --env-file .env -p 8080:8080 hercules:1.0docker run --env-file .env -p 9080:9080 hercules:1.0echo YOUR_GITHUB_PAT | docker login ghcr.io -u YOUR_GITHUB_USERNAME --password-stdindocker tag hercules:1.0 ghcr.io/bellyachx/hercules:1.0
docker push ghcr.io/bellyachx/hercules:1.0http://localhost:9080/actuator/swagger-ui/index.html
All Rights Reserved