Created
June 28, 2018 12:28
-
-
Save aerobless/5d8e06ee05d846cb0cf58686e6cde02c to your computer and use it in GitHub Desktop.
Example of how to have a config for Google Cloud Functions.
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
const config = { | |
sample: { | |
database: { | |
connection: 'projectId:location:dbInstance', | |
name: 'dbName', | |
user: 'dbUser', | |
password: 'dbPassword' | |
} | |
} | |
}; | |
module.exports = config; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment