https://github.com/dkunin/jira-board-issues
Get jira board issues, with boardId and jql
https://github.com/dkunin/jira-board-issues
Last synced: about 1 year ago
JSON representation
Get jira board issues, with boardId and jql
- Host: GitHub
- URL: https://github.com/dkunin/jira-board-issues
- Owner: DKunin
- Created: 2017-01-23T12:32:35.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-05-08T20:54:15.000Z (about 8 years ago)
- Last Synced: 2025-03-14T19:50:30.513Z (over 1 year ago)
- Language: JavaScript
- Size: 9.77 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Jira Board Issues
Simple module - to make request to jira api, and recieve issues
## Table of Contents
- [Install](#install)
- [Usage](#usage)
- [License](#license)
## Install
```console
git clone git@github.com:DKunin/jira-board-issues.git
cd jira-board-issues
```
Before usage JIRA_PASS and JIRA_PATH env variables should be set in your .bashrc file, or any other place, you use to declare variables. JIRA_PASS is base64 encoded your 'username:password'.
```bash
export JIRA_PASS='ZnJlZDpmcmVk'
export JIRA_PATH='www.jira.com'
```
```console
npm start
```
With Docker:
```console
docker pull dkunin/jira-board-issues
docker run -p 4747:4747 -e JIRA_PASS=$JIRA_PASS -e JIRA_PATH=$JIRA_PATH -d dkunin/jira-board-issues
```
or if you want to modify/build your own image:
```console
npm run docker-image-build
npm run docker-image-start
```
## Usage
Example request:
```
http://localhost:4747/api/kanban?boardId=229&jql=assignee%20=%20currentUser()
```
jql is currently mandatory
## License
MIT © Dmitri Kunin