Skip to content

Instantly share code, notes, and snippets.

@ashmore11
Last active January 14, 2021 18:15
Show Gist options
  • Select an option

  • Save ashmore11/6aa617fb64d7c889758c748f01f5af6c to your computer and use it in GitHub Desktop.

Select an option

Save ashmore11/6aa617fb64d7c889758c748f01f5af6c to your computer and use it in GitHub Desktop.
Next Strapi Cloud Run (database development)
{
"defaultConnection": "default",
"connections": {
"default": {
"connector": "bookshelf",
"settings": {
"client": "mysql",
"host": "${process.env.DB_HOST}",
"port": "${process.env.DB_PORT}",
"database": "${process.env.DB_NAME}",
"username": "${process.env.DB_USERNAME}",
"password": "${process.env.DB_PASSWORD}"
},
"options": {}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment