Boilerplate for a Docker image containing a Python project utilizing NGINX, Gunicorn, and Hug. This stack operates as follows:
Client <-> NGINX <-> Gunicorn <-> Python API (Hug)
Clone repository, navigate to directory where repository was cloned, then:
For production:
$ make prod
For development:
$ make dev
Once the docker images are running, navigate to localhost:8000
. A hello world
message should be visible!