- Add userstories to TAIGA.IO service using user/password and the project's slug.
- It allow to add subject, description and points.
- It allow to remove current userstories (use it carefully!).
- slug: https://tree.taiga.io/project/slug
- Install node, please see: nodejs.org and update npm:
-
sudo npm install npm -g
- Install NPM dependencies:
npm install
- Without parameteres: just add the user stories.
node index.js
- delete-userstories: remove current user stories.
(@default: false)
node index.js --delete-userstories=true
- userstories_file: filename to read new user stories.
(@default: userstories.json)
node index.js --userstories_file=file.json
Is an array of objects. Example:
[{
"subject": "Subject 1",
"description": "Description 1",
"points": {
"back": 0,
"front": 1,
"ux": 2,
"design": 3
}
}, {
"subject": "Subject 2",
"description": "Description 2",
"points": {
"back": 2,
"front": 5,
"ux": 3,
"design": 8
}
}]