Clone the repo
$ git clone https://[ Add your bitbucket username here]@bitbucket.org/noodleai/flask-boilerplate.git
$ cd flask-boilerplate
Initialize and activate a virtualenv:
$ virtualenv --no-site-packages env
$ source env/bin/activate
Install the dependencies:
$ pip install -r requirements.txt
Run the development server:
$ cd src
$ python apps.py
Navigate to http://localhost:8000
Boilerplate uses a number of open source projects to work properly:
- Flask - Flask is a microframework for Python based on Werkzeug, Jinja 2 and good intentions.
- Flask-Restful - Flask-RESTful is an extension for Flask that adds support for quickly building REST APIs.