Hi, We are migrating our Atlassian-Connect-Express app to Forge based on this documentation. How to find whether my app uses the external database for installed users or not?
We have following code in config.json,
"production": {
"port": "$PORT",
// Use views/unauthorized.hbs for error page.
"errorTemplate": true,
// Public URL to production app.
"localBaseUrl": "https://$WEBSITE_HOSTNAME/",
"store": {
// Don't use memory storage for production, otherwise
// data in the storage will go away when the app server restarts.
// Here, we use PostgreSQL:
"type": "postgres",
// PaaS like Heroku will provide DB connection URL through environment variable.
"url": "$DATABASE_URL"
},
"whitelist": [
"*.jira-dev.com",
"*.atlassian.net",
"*.atlassian.com",
"*.jira.com"
]
},
What happens after migrated to forge?