Last Updated: February 25, 2016
·
1.234K
· iambibhas

Tornado Application Boilerplate

I wrote a small boilerplate so that it's possible to init a Tornado app faster.
https://github.com/iambibhas/tornado-boilterplate

It looks like this -

.
├── server.py
├── apps
│   ├── __init__.py
│   └── main
│       ├── __init__.py
│       ├── urls.py
│       └── views.py
├── __init__.py
├── settings.py
├── static
│   └── style.css
├── templates
│   ├── base.html
│   └── home.html
└── urls.py