Create Python virtual environment
python -m venv venv
Activate Python virtual environment
. ./venv/bin/activate
Install requirements
pip install -r requirements.txt
Run the website locally (will automatically refresh)
$ make build
Deploy the website
$ make deploy