https://github.com/bottlepy/bottle-boilerplate
Boilerplate code for new Bottle projects
https://github.com/bottlepy/bottle-boilerplate
Last synced: about 1 year ago
JSON representation
Boilerplate code for new Bottle projects
- Host: GitHub
- URL: https://github.com/bottlepy/bottle-boilerplate
- Owner: bottlepy
- License: mit
- Created: 2014-08-13T18:12:27.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2018-01-02T21:47:10.000Z (over 8 years ago)
- Last Synced: 2025-04-10T00:28:35.162Z (about 1 year ago)
- Language: Python
- Size: 10.7 KB
- Stars: 31
- Watchers: 4
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
==================
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
------------
.. code-block:: bash
pip install bottle-boilerplate
Used
----
Start new project:
.. code-block:: bash
bottle-boilerplate startproject YOUR-PROJECT-NAME
cd YOUR-PROJECT-NAME
pip install -r requirements.txt
To run your application:
.. code-block:: bash
python manage.py runserver
Open Bottle documentation:
.. code-block:: bash
bottle-boilerplate doc