Environment Variables
We try to let most of the things defined through Environment Variables, as 12factor applications’s config. You’ll need to configure through your hosting provider (for example in Heroku), through a gem like figaro
or through docker-compose env_file
.
Name | Value |
---|---|
DATABASE_HOST |
Hostname for the Postgres database. Default is |
DATABASE_PASSWORD |
Password for the Postgres database |
DATABASE_PORT |
Port for the Postgres database. Default is |
DATABASE_USERNAME |
Username for the Postgres database |
GEOCODER_API_KEY |
API key for Geocoder HERE.com |
OMNIAUTH_FACEBOOK_APP_ID |
App ID for enabling access through Facebook.com accounts. See Social Providers. |
OMNIAUTH_FACEBOOK_APP_SECRET |
App Secret for enabling access through Facebook.com accounts. See Social Providers. |
OMNIAUTH_GOOGLE_CLIENT_ID |
Client ID for enabling access through Google.com accounts. See Social Providers. |
OMNIAUTH_GOOGLE_CLIENT_SECRET |
Client Secret for enabling access through Google.com accounts. See Social Providers. |
OMNIAUTH_TWITTER_API_KEY |
API Key for enabling access through Google.com accounts. See Social Providers. |
OMNIAUTH_TWITTER_API_SECRET |
API Secret for enabling access through Google.com accounts. See Social Providers. |
PORT |
Specifies the |
RAILS_ENV |
Environment for Ruby on Rails. If it’s on your local machine for development, then it should be |
RAILS_LOG_TO_STDOUT |
If true it’ll show the log contents on the shell Standard Out. It’s special relevant on certain hosting providers (for example, Heroku or Docker). It’s also part of 12factor’s recomendations. |
SECRET_KEY_BASE |
Secret key base for the Application. It’s specially important that this is kept secret from the outside word; do NOT publish it on GitHub/GitLab/BitBucket. |
SMTP_ADDRESS |
Hostname for the SMTP server, for sending emails. See SMTP |
SMTP_DOMAIN |
Domain for the SMTP server, for sending emails. See SMTP |
SMTP_PASSWORD |
Password for the SMTP server, for sending emails. See SMTP |
SMTP_USERNAME |
Username for the SMTP server, for sending emails. See SMTP |
Please take care that all these configurations would be the defaults but some of these could also be changed on a Multitenant’s System configuration (for instance SMTP or OAUTH providers).