How to properly deploy node apps to GAE with secret keys?
问题 I am exploring GAE with nconf and I'm wondering if the following setup is secured after I deploy an App. What concerns me is are both my "config.dev.json" and "config.prod.json" files deployed despite including them in ".gitignore". I am unsure what information is passed along to gae (I don't want my config keys exposed) after I do: $ git add . $ git commit -m 'Commiting' $ glcoud app deploy My Node App structure looks like this: - /myProject - /node_modules - .gitignore - app.js - app.yaml -