DEV Community

Discussion on: Strapi QuickStart on DigitalOcean App Platform

Collapse
 
johnsickels profile image
John Sickels • Edited

Thanks for the resource. I also needed to npm i pg strapi-provider-upload-do and add this property to the config/database.js:

module.exports = ({ env }) => ({
  defaultConnection: "...",
  connections: {
    default: {
      connector: "...",
      settings: {...},
      options: {}, // <----- missing this
    },
  },
});
Enter fullscreen mode Exit fullscreen mode