To setup the application locally, you should have a code editor(VS Code) and python installed in your computer (Version 3.9 minimum)
PS: During the installation of python you will need to select "add to path". Be carefull!
Open the terminal in your code editor (crtl + %)
Enter these commands based on your Operating System
###### # Mac
python3 -m venv venv
source venv/bin/activate
python -m venv venv
venv\Scripts\activate
pip install --upgrade pip
pip install -r requirements.txt
python main.py
Enjoy!
How to make an executable: In the terminal, type:
pyinstaller --onefile --windowed main.py