Skip to content

bottlepy/bottle-boilerplate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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