*Part of a Docker course - "docker-and-kubernetes-the-complete-guide" by the great Stephen Grider
Practice Docker & Kubernetes. This app calculates the value of a Fibonacci value given an index. Example: For the index 6 the value is 13.
The master branch is integrated into TravisCI, a successful deploy must pass the react app tests. After success, a script will build and push to docker hub + set a new image to a k8s cluster deployed on GKE.
returns create-react-app static files
API for Fibonacci calculations. Will save indices the app seen in a Postgress DB. The calculated values will first be saved as "ready", then will be passed to the worker container.
Listens to the saved Redis values (Pub/Sub), then calculates the Fibonacci value.