- Python 3.9
- Pipenv
- Make
The Makefile
has everything required to set up the development environment locally.
-
Prepare the
pipenv
shell:$ make develop
-
Install dependencies:
$ make install
-
Run unit tests:
$ make test
-
Start the app. By default, it listens on the port 3000.
$ make start-app
-
To format the code:
$ make format-code