angular app using jira API to return jira tickets to be printed - 2 tickets per pages
This is an Angular app using jira API and its search
endpoint.
More information about this API on jira api documentation.storyPrinter.js
runs the app and exposes an API proxy (/getStories
endpoint) to query jira
./config.js
file exposing the following keys: username
, password
, url
.storyPrinter.js
) are used by the api/getStories
proxy from client-side.
module.exports = {
username: "<YOUR_JIRA_USERNAME>",
password: "<YOUR_JIRA_PASSWORD>",
url: "https://<YOUR_JIRA_DOMAIN>.atlassian.net/rest/api/latest/search?"
}
IMPORTANT
Please remember not to expose config.js
file anywhere as it will contain your jira credentials.
npm i
to install dependencies:3000