https://github.com/danieldev0724/threadedcomments
Threaded Comments Plugin for Jira using Forge and React
https://github.com/danieldev0724/threadedcomments
atlaskit forge jira jira-plugin react
Last synced: 2 months ago
JSON representation
Threaded Comments Plugin for Jira using Forge and React
- Host: GitHub
- URL: https://github.com/danieldev0724/threadedcomments
- Owner: danieldev0724
- License: apache-2.0
- Created: 2023-07-19T08:28:27.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-07-19T08:36:25.000Z (almost 3 years ago)
- Last Synced: 2026-01-01T18:22:03.436Z (5 months ago)
- Topics: atlaskit, forge, jira, jira-plugin, react
- Language: JavaScript
- Homepage:
- 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
# Threaded Comments App
This project contains a Forge Threaded Comments 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
```