Deployment failure in an Official Example Forge Jira App

Hi there,
I was trying out the following app:
https://bitbucket.org/atlassian/todo-app-custom-ui/src/master/
While trying to deploy it using “forge deploy”, I am having the following error:

Deploying your app to the development environment.
Press Ctrl+C to cancel.

Running forge lint...
Error: The deploy failed due to errors in the app code. Fix the errors before rerunning forge deploy, or run forge deploy --no-verify to skip the linter.

jira-apps/todo-app-custom-ui/manifest.yml
16:10   error    missing index.html file in directory (static/spa/build) is being referenced by a custom UI resource in jira:issuePanel module  valid-resource-required

16:10   error    missing directory 'static/spa/build' is being referenced by 'main' in resources  valid-resource-required

X 2 issues (2 errors, 0 warnings)
  Issues found are not automatically fixable with forge lint.
Rerunning the command with --verbose may give more details.

Please advise.

Thanks.

1 Like

Did you cd static/spa && npm install && npm run build first to build the static resources that the forge command will upload to the Atlassian cloud?

4 Likes

Thank you for reaching out on this.
Your suggestion helped to fix this.
In addition to your suggestion, I had to execute npm install in the top level directory of the app. But I guess we need to do that always.

1 Like