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