Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 985 Bytes

README.md

File metadata and controls

38 lines (31 loc) · 985 Bytes

JIRA CLI

Command Line Interface for Atlassian JIRA

Features

  1. Quick Search


  2. Advanced Search


  3. My Issues Search


Installation

brew tap devashishTaneja/devashishTaneja
brew install devashishTaneja/devashishTaneja/jira

# Link to generate API Key for JIRA
# https://support.atlassian.com/atlassian-account/docs/manage-api-tokens-for-your-atlassian-account/
echo -ne '\nexport JIRA_DOMAIN=https://domain.atlassian.net' >> ~/.zshrc
echo -ne '\nexport JIRA_API_USER=username' >> ~/.zshrc
echo -ne '\nexport JIRA_API_KEY=apikey' >> ~/.zshrc

# Now the fun part, go ahead and start using CLI :)
jira-cli

Development

go build -o out/jira main.go
out/jira <search_text>
go mod init github.com/devashishTaneja/jira-cli
go mod vendor