Developers who are familiar with the "twelve-factor" app know that configuration should be stored in the environment (loaded via env vars), not in the code. If you're writing a Rails application you may want to use the dotenv gem, which allows you to store env variable in a handy series of files such as .env, [...]