bottle-boilerplate

Boilerplate code for new Bottle projects


Keywords
bottle, boilerplate, startproject, doc
License
MIT
Install
pip install bottle-boilerplate==0.3

Documentation

bottle-boilerplate

Boilerplate code for new Bottle projects

What Bottle Boilerplate does?

Build an structure to create applications in the rigth way with Bottle, using MVC (Model-View-Controller) and Tests.

Installation

pip install bottle-boilerplate

Used

Start new project:

bottle-boilerplate startproject YOUR-PROJECT-NAME
cd YOUR-PROJECT-NAME
pip install -r requirements.txt

To run your application:

python manage.py runserver

Open Bottle documentation:

bottle-boilerplate doc