https://github.com/jmkoni/sinatra-jira-app
application that allows you to submit bug reports to JIRA via an app
https://github.com/jmkoni/sinatra-jira-app
Last synced: about 1 year ago
JSON representation
application that allows you to submit bug reports to JIRA via an app
- Host: GitHub
- URL: https://github.com/jmkoni/sinatra-jira-app
- Owner: jmkoni
- Created: 2018-09-14T12:56:00.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-01T01:18:51.000Z (over 3 years ago)
- Last Synced: 2025-02-14T17:43:38.883Z (over 1 year ago)
- Language: Ruby
- Size: 6.84 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sinatra-jira
This is an template for an application to submit bugs to JIRA. This script uses [basic authentication](https://developer.atlassian.com/server/jira/platform/basic-authentication/), but you can easily alter it to use [OAuth](https://developer.atlassian.com/server/jira/platform/oauth/) instead. If using this, you'll also want to update `views/response.erb` to reflect whatever you want users to see after they submit a ticket (ie further instructions).
This is as flexible as the [JIRA API](https://developer.atlassian.com/server/jira/platform/oauth/). If you want to add more fields, just update `views/form.erb` and `json` in `sinatra_jira.rb`. I would recommend updating the examples to be more specific and relevant to your project.
## getting started
1) `cp .env.example .env`
2) update .env with your JIRA username, password, and project key
2) `bin/setup`
3) `ruby sinatra_jira.rb`