Original github material is here
Site deployed to AWS is here
Python notebook is here Python notebook exported as html is here And here
Python notebook exported to html is here
If you're interested in how I configured the different web services to deploy with AWS, check out my blog post here.
CI is at at CircleCI
docker-compose up --build -d
There are two health methods up. They don't actually do anything besides verify the server is hunky dory.
curl -X POST \
http://localhost/server/health \
-H 'Cache-Control: no-cache' \
-H 'Content-Type: application/json' \
-d '{"hello": "world"}'
curl -X GET \
http://localhost/server \
-H 'Cache-Control: no-cache'
curl -X GET \
http://localhost/server/read-data \
-H 'Cache-Control: no-cache'