Simple Python REST server using bottle
Get yourself setup once you have cloned like so:
$ make installAfter making sure you are in your virtual environment you can run the server as follows
$ make run-demoTo test a server is running you can use curl to request the ping endpoint like so
$ curl -v -k https://localhost:9000/pingNote we intentionally disable the certificate validation checks in curl for this because the cert is self signed.