repositorypackage
0.0.0-20230709133807-00b8deb63005
Repository: https://github.com/devashishtaneja/jira-cli.git
Documentation: pkg.go.dev
# README
JIRA CLI
Command Line Interface for Atlassian JIRA
Features
- Quick Search
- Advanced Search
- 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