This is an example Forge app that updates a Jira issue using fake data we get from an external API inside a modal.
See Set up Forge for instructions to get set up.
Once you have logged into the CLI (forge login
), follow the steps below to install the app onto your site:
-
Run
git clone https://github.com/sarthakarora1208/sample-crud-forge-app.git
to clone the repository. -
Run
cd sample-crud-forge-app
to change the directory. -
Run
npm run setup
. This command will bundle the our two static web applications (static/main-app && static/wrapper-app) together with the custom UI bridge, into the static/main-app/build & static/wrapper-app/build directory, which is used as the resource path in the Forge app's manifest.yml -
Run
forge register
to register a new copy of this app to your developer account -
Run
forge deploy
to deploy the app into the default environment -
Run
forge install
and follow the prompts to install the app
Press the 'Open Sample App' button on the issue pannel to get started with our app.
This app is designed as a Forge reference example for developers.
-
Run
cd static/main-app && npm run start
to start the main-app -
Run
cd static/wrapper-app && npm run start
to start the wrapper-app -
Run the
forge tunnel
command to run your Forge app locally.