-
Install Taskfile for your operating system
-
Make sure the Python version you are going to use for the virtualenv is installed on the system and added to path (this project has been tested on python 3.11.x)
-
Install virtualenv
Firstly you need to create the virtual environment:
virtualenv venv
Next you need to activate it (first is for windows second is for unix based):
.\venv\Scripts\activate
source venv/bin/activate
Then all you need to do is navigate to the project directory and run:
task setup
To run the project you can run (make sure the virtual env has been activated):
task run
If you only want to build the project use:
task build