This tool was created to ease some routine operation against Jira. Like create some subtasks by specific algorithm and monitor theirs state.
Now it supports one-click creating subtasks for code review and for QA.
- Install golang
- Create a new API token for Jira:
- Got to the your account settings
- Click
Create API Tokenbutton on the top of the page - Provide some label for it, e.g.
jiraTasksHandling - Copy generated token, you will need it later
- Create
config.jsonfile in thebackendfolder with this values:
{
"jiraBaseUrl": "https://smooveio.atlassian.net/rest/api/2/",
"jiraUsername": "Your username in Jira (e.g. sergey.b@smoove.io)",
"jiraPassword": "API token generated in previous step",
"uiUrl": "http://localhost:8090"
}- You can start backend from VSCode with
Run > Start Debuggingmenu or by pressing F5.
You can run it outside of VSCode with help of
backend/run.shbut this will require changes inui/config.json
- To start UI part you should execute
npm startscript in a terminal. After this the tool will be avialble by localhost:8090