Last active
January 14, 2021 18:15
-
-
Save ashmore11/6aa617fb64d7c889758c748f01f5af6c to your computer and use it in GitHub Desktop.
Next Strapi Cloud Run (database development)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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