- The Python interpreter with version 3.7.x as minimum (make sure you add it to your path)
- A Virtualenv (explained below)
To setup the project make sure you have all the prerequisites!
-
Clone the project using the Git client.
-
Open a terminal and move your directory to the project.
-
Create a new Virtualenv using the following command:
python3 -m venv venv
- Activate the Virtualenv using the following command:
. venv/bin/activate
On Windows:
venv\Scripts\activate
- Run the following command to install the requirements:
pip3 install -r requirements.txt --no-index
- Run the app:
python3 app.py
- Luuk Kenselaar - Luuk2016