https://github.com/danieldev0724/issue-link-plugin
https://github.com/danieldev0724/issue-link-plugin
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/danieldev0724/issue-link-plugin
- Owner: danieldev0724
- License: apache-2.0
- Created: 2023-07-23T08:54:15.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-23T09:21:03.000Z (almost 3 years ago)
- Last Synced: 2025-08-23T11:07:10.592Z (10 months ago)
- Language: JavaScript
- Size: 2.15 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Issue Link App
This project contains a Forge Issue Link app written in React that displays in a Jira issue panel.
See [developer.atlassian.com/platform/forge/](https://developer.atlassian.com/platform/forge) for documentation and tutorials explaining Forge.
## Requirements
See [Set up Forge](https://developer.atlassian.com/platform/forge/set-up-forge/) for instructions to get set up.
## Quick Start
### Register the app
- Set Forge Environment:
```
read FORGE_EMAIL
# Enter email
read -s FORGE_API_TOKEN
# Enter API token (will not be displayed)
export FORGE_EMAIL FORGE_API_TOKEN
```
- Register the app by running:
```
forge register
```
### Frontend
- Change into the frontend directory by running:
```
cd ./static/comment
```
- Install your frontend dependencies by running:
```
npm install
```
- Build your frontend by running:
```
npm run build
```
### Deployment
For this section, ensure you have navigated back to the root of the repository.
- Install the forge dependencies by running:
```
npm install
```
- Build and deploy your app by running:
```
forge deploy
```
- Install your app in an Atlassian site by running:
```
forge install
```
### Alternative
- Change into the frontend directory by running:
```
cd ./static/comment
```
- Install your frontend dependencies by running:
```
npm install
```
ensure you have navigated back to the root of the repository.
- Install the forge dependencies by running:
```
npm install
```
- Build, deploy and install your app by running:
```
npm run deploy
```