I've got a public repo on Github. And I want to set it up with a few services that would require personal API keys.
Of course, I want to share the codebase with whoever wants it, but not my personal keys.
Is there a pattern for this?
I'm thinking I could .gitignore a file of constants and only use them on my server itself.
Just not sure what the recommended practice is for this.
FYI: it is a javascript application in Meteor. With both server and client-side javascript.
Thanks in advance.