/python-web-app-starter-kit

A Python Project Template

Primary LanguageMakefile

Development

Pre-requisites

Getting Started

The Makefile has everything required to set up the development environment locally.

  1. Prepare the pipenv shell:

    $ make develop
    
  2. Install dependencies:

    $ make install
    
  3. Run unit tests:

    $ make test
    
  4. Start the app. By default, it listens on the port 3000.

    $ make start-app
    
  5. To format the code:

    $ make format-code