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