https://github.com/kinduff/jira-opener
Helps you out with the funny task of opening JIRA issues one by one
https://github.com/kinduff/jira-opener
Last synced: 18 days ago
JSON representation
Helps you out with the funny task of opening JIRA issues one by one
- Host: GitHub
- URL: https://github.com/kinduff/jira-opener
- Owner: kinduff
- License: mit
- Created: 2016-05-07T05:40:01.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2020-03-10T14:34:25.000Z (over 6 years ago)
- Last Synced: 2025-02-22T21:43:41.779Z (over 1 year ago)
- Language: JavaScript
- Homepage: http://kinduff.com/jira-opener
- Size: 333 KB
- Stars: 2
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# JIRA Opener
Small tool I wrote during a Friday night because I hate to open multiple JIRA issues from e-mails or annoying Slack messages. Basically it helps you out with the funny task of opening JIRA issues one by one.
[See it in action](http://kinduff.com/jira-opener)
## Install
To install the project dependencies run the following npm command.
```shell
$ npm install
```
## Start the app
First your need to build the application. The application is going to be compiled in a folder called `dist`.
```shell
$ gulp build
```
Then you can run the application using the follwing command. This will `serve` the `dist` folder in your `localhost:3000`.
```shell
$ gulp run
```
If you want faster development you can use the `watch` task to watch assets for change.
```shell
$ gulp watch
```
You can run all these at the same time by running `gulp` alone.
### Gulp Tasks
This application includes the following gulp tasks.
- **js**: Concats and minifies JS files to `app/dist/app.js`.
- **css**: Uses SCSS to process `app/src/style/app.scss` to `app/dist/style/app.css`.
- **clean_images**: Cleans `app/dist/images` folder.
- **images**: Copies images from `app/src/images/*/**` to `app/dist/images`.
- **jade**: Uses Jade to process `app/src/*.jade` to `app/dist`.
- **deploy**: Uses `gulp-gh-pages` npm library to deploy `dist` content to Github pages (it builds first!)
- **watch**: Runs corresponding task for supported action.
## License
Written with ♥ by [kinduff](http://twitter.com/kinduff). Licensed under the [MIT License](LICENSE).