jira-analysis/README.md

59 lines
1.3 KiB
Markdown
Raw Normal View History

Script to extract data from JIRA and pull it into a postgres DB for analysis.
## Setup
1. Install [docker][docker-desktop]
2. Install [nim][nimlang] (via [choosenim][choosenim]).
3. [Generate an API token for your JIRA user.][jira-api-key]
4. Pull the database container:
2021-04-02 18:54:19 +00:00
```sh
make createdb
```
2021-04-02 18:54:19 +00:00
Feel free to edit the Makefile to view or change the default
username/password combination.
2021-04-02 18:54:19 +00:00
5. Build the tool:
2021-04-02 18:54:19 +00:00
```sh
nimble build
```
## Usage
- Start the database container:
2021-04-02 18:54:19 +00:00
```sh
make startdb
```
- Pull issues from your JIRA instance into the DB:
2021-04-02 18:54:19 +00:00
```sh
./jira_analysis api-sync <jira-base-url> <username> <api-token>
```
- Connect to the database for analysis:
2021-04-02 18:54:19 +00:00
```sh
make connect
```
## Convenient PostgreSQL commands
From within a `psql` session:
- Export tables to CSV:
2021-04-02 18:54:19 +00:00
```psql
\copy features TO features-export.csv DELIMITER ',' CSV HEADER;
\copy issues TO issues-export.csv DELIMITER ',' CSV HEADER;
\copy change_logs TO changelog-export.csv DELIMITER ',' CSV HEADER;
```
[docker-desktop]: https://www.docker.com/products/docker-desktop
[nimlang]: https://nim-lang.org/
[choosenim]: https://github.com/dom96/choosenim
[jira-api-key]: https://support.atlassian.com/atlassian-account/docs/manage-api-tokens-for-your-atlassian-account/