PowerApp by SIGHUP
This is PowerApp, a learning-friendly application used by SIGHUP during the delivery of many of its workshops. The goal of this application is to provide a simple-yet-realistic standard architecture to use as a starting point during our trainings and workshops.
If you are looking for Kubernetes professional trainings or workshops, email us.
The current application has a multi-tiered architecture with standard frontend <-> backend <-> db
.
To run the PowerApp with docker-compose
execute
# Build the kubeprimer-web and kubeprimer-backed containers images
make build
# Run the services
make run
The services can be scaled with
docker-compose up scale frontend=3 backend=2