It's recommended to set up a venv. Then install the dependencies from the requirements.txt
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python -m venv venv
.\venv\Scripts\Activate.ps1
pip install -r requirements.txt
Just execute the main.py
The configuration can be passed in via environment variables.
JIRA_HOST=jira.example.com JIRA_USER=username python main.py
This project was inspired by github.com/ussserrr/jira-worklogs.