Windows
python -m venv venv && venv\Scripts\activate && pip install -r requirements.txt
Linux/Mac
python3 -m venv venv && source venv/bin/activate && pip3 install -r requirements.txt
2. Create .env file and copy all variables from .env_example to it and customize your self (if needed)
Windows
python app.py
Linux/Mac
python3 app.py