Skip to content

Latest commit

 

History

History
executable file
·
51 lines (29 loc) · 1.89 KB

README.md

File metadata and controls

executable file
·
51 lines (29 loc) · 1.89 KB

bakery-bills

Build Status Coverage Status Code Health Requirements Status

Hosted at Heroku

API Documentation

Stack

  • Python >= 3.5
  • PIP
  • Pipenv

Run the app locally

  1. Make sure you have Python >= 3.5 and PIP installed.

    1.1. In order to install it on Ubuntu-like systems run:

     $ sudo apt-get install python3 \
         sudo apt-get install python3-pip
    
  2. Install Pipenv.

     $ sudo pip3 install pipenv
    
  3. Git clone this repo. Make sure you have git installed

     $ git clone https://github.com/diogosimao/bakery-bills.git && cd bakery-bills
    
  4. Use Pipenv to create a virtualenv, install its dependencies and activate the virtualenv.

     $ pipenv --three && pipenv install && pipenv shell
    
  5. Run . ./bin/start_development.sh

Development server should be up at http://localhost:8000/.

Run tests

  1. Run . ./bin/run_tests.sh

After that your browser should open with coverage report.