Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 542 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 542 Bytes

simple-rest-server

Simple Python REST server using bottle

Installing

Get yourself setup once you have cloned like so:

$ make install

Running

After making sure you are in your virtual environment you can run the server as follows

$ make run-demo

Testing

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.