Skip to content

Latest commit

 

History

History
45 lines (24 loc) · 735 Bytes

README.rst

File metadata and controls

45 lines (24 loc) · 735 Bytes

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