https://github.com/bitovi/jira-timeline-report
An open source jira to power point slide generator for high-level status reporting.
https://github.com/bitovi/jira-timeline-report
agile jira program-management
Last synced: about 1 year ago
JSON representation
An open source jira to power point slide generator for high-level status reporting.
- Host: GitHub
- URL: https://github.com/bitovi/jira-timeline-report
- Owner: bitovi
- Created: 2023-01-25T17:37:48.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-07T02:59:38.000Z (about 1 year ago)
- Last Synced: 2025-04-07T03:31:32.324Z (about 1 year ago)
- Topics: agile, jira, program-management
- Language: JavaScript
- Homepage: https://statusreports.bitovi.com/
- Size: 54.4 MB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# Status Reports for Jira
__Status Reports for Jira__ creates stunning, branded status reports for your Jira projects. It offers customizable designs to showcase progress and timelines.

For guides and comprehensive documentation, checkout the [project's official wiki](https://bitovi.atlassian.net/wiki/spaces/StatusReportsForJira/overview).
## Need Help or Have Questions?
This project is supported by Bitovi, an [Agile Project Management consultancy](https://www.bitovi.com/services/agile-project-management-consulting). For bugs or feature requests, please submit a [Github Issue](https://github.com/bitovi/jira-timeline-report/issues).
You can get help or ask questions on our:
- [Discord](https://discord.gg/J7ejFsZnJ4)
- [Twitter](https://twitter.com/bitovi)
## Contributing
See [Contributing](CONTRIBUTING.md)
### Navigating the Files
- The server folder contains a `server.js` which bootstraps an express application that renders the application
- It has an endpoint that fetches the access token from Jira and refreshes the access token when expired.
- The `pages` folder contains the html files that are rendered.
- The `public` folder contains the javascript files that are included in the html files.
- The `jira-oidc-helpers` is a collection of modules with all the helpers required to interact with Jira and save your access and refresh tokens to `localStorage`.
- You will make changes to the `main-helper.js` files based on your use case. Everything you need to make your request has been layered in `jira-oidc-helpers`.
- Call the `jiraFetch` helper with the url path you want from your main and handle the data how you see fit. e.g
```js
const issue = await jiraHelper.jiraFetch(urlPath);
```