Allows you to use variables defined in a .env file in swift in a secure way. Heavily inspired by Pouch and NSHipster article regarding secret management.
- Add this package to your project
- Create a
.envfile in the root of your project - add
.envto gitignore - Reference the variables in Swift code via:
Secrets.yourEnvKey
While this is for sure an improvement to your normal, plain-text based flow, this doesn't guarantee that your keys won't be reverse-engineered. If you want to learn more about secret management and it's security, I recomend you to read the whole article I linked at the top of the Readme: NSHipster article regarding secret management.
