I have been developing connect addons for a while, but am trying out atlassian-connect-express for the first time. I am unable to install the addon when using postgres as my store and sequelize for my adapter. The installation times out, and I receive no feedback through the console.
My store is defined in my config.json as follows:
"store": {
"adapter": "sequelize",
"type": "postgres",
"database": "dbname",
"url":"postgres://127.0.0.1/dbname?user=admin&password=password"
}
The database is in a docker container running on my local machine. Database is dbname, user is admin.
The addon installs successfully if I use the sqlite3 adapter. Is there anything I need to do to have the addon work with postgres.