Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 506 Bytes

DEVELOPMENT.md

File metadata and controls

38 lines (25 loc) · 506 Bytes

Development Cheatsheet

Running locally

Set up the python virtual environment via pipenv.

pipenv install

From the virtual environment, you can start the server in a debug mode by running:

python debug.py

Run tests

pytest

Check for published security vulnerabilities

safety check

Test docker

docker build -t .
docker run -p 5000:80 --rm -it burn

Push new docker container

Should be handled by the github workflow. Just push a new tag.