An open API service indexing awesome lists of open source software.

https://github.com/realpython/flask-sinatra-martini

https://realpython.com/blog/python/python-ruby-and-golang-a-web-Service-application-comparison/
https://github.com/realpython/flask-sinatra-martini

Last synced: 7 months ago
JSON representation

https://realpython.com/blog/python/python-ruby-and-golang-a-web-Service-application-comparison/

Awesome Lists containing this project

README

          

flask-sinatra-martini
----------

A comparison of flask (Python), sinatra (Ruby), and martini (Golang) for building a very simple "blog" web service.

## QuickStart

Each of the applications is fully dockerized so you can run the exact same commands to start each service!

* docker-compose build
* docker-compose up
* sh seed.sh

#### WARNING

If seed.sh fails and you are not using boot2docker you will need to edit the seed file and replace `DOCKER_IP=$(boot2docker ip)` with `DOCKER_IP=localhost`.

## Blog Post

[Python, Ruby, and Golang: A Web Service Application Comparison](https://realpython.com/blog/python/python-ruby-and-golang-a-web-Service-application-comparison/)