Hello everyone.
I am new about developing jira-plugin with atlas-connect. I am getting error when i try to test my app on jira. I am gonna write all steps that i applied. Could you please help me about this issue?
- I create an application with atlas-connect cli.
- I developed my app on react.
- I tried this on jira with my localhost. It worked properly.
- I followed the documentation and i published my application on heroku.
- Next it threw error like this.
I think it is about postgresql. But ı dont want to store and use data in postgresql. Because i want to use just entity properties data from jira cloud. And also i want to use this way with AP.request from all.js.
Can you give please me some advice about this issue what can i do for fixing error?
Config.json
{
"development": {
"port": 3000,
"errorTemplate": true,
"store": {
"adapter": "sequelize",
"dialect": "sqlite3",
"logging": false,
"type": "memory"
}
},
"production": {
"port": "$PORT",
"errorTemplate": true,
"localBaseUrl": "https://x-y-z.herokuapp.com", // the url which i published my app on her oku
"store": {
"type": "postgres",
"url": "$DATABASE_URL"
},
"whitelist": [
"*.jira-dev.com",
"*.atlassian.net",
"*.atlassian.com",
"*.jira.com"
]
},
"product": "jira"
}
atlassian-connect.json
{
"key": "abc",
"name": "abc",
"description": "My very first app",
"baseUrl": "{{localBaseUrl}}",
"vendor": {
"name": "vendor",
"url": "vendor website"
},
"authentication": {
"type": "jwt"
},
"lifecycle": {
"installed": "/installed"
},
"scopes": [
"READ"
],
"modules": {
"webPanels": [
{
"key": "example-issue-left-panel",
"location": "atl.jira.view.issue.right.context",
"name": {
"value": "My app"
},
"url": "/panel",
"weight": 50
}
]
}
}
And error