You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the app was upgraded to Rails 4.1, it seems like secret_token.rb was left behind by mistake. It should probably be removed.
Also, secrets.yml now points to ENV['SECRET_KEY_BASE'] for production, but before the upgrade to Rails 4.1, the env var was called SECRET_TOKEN. This will cause issues during Heroku deployment. The env var should either stay the same, or a note should be added to the README.
Thoughts?
The text was updated successfully, but these errors were encountered:
Furthermore, there is a discrepancy in secrets.yml in the configuration of the production environment variable once the upgrade was made to Rails 4.1. The variable set in the production environment would currently exist as: ENV['SECRET_TOKEN']. As a result, you want the secrets.yml file to point to that variable. This is what it should look like:
When the app was upgraded to Rails 4.1, it seems like
secret_token.rb
was left behind by mistake. It should probably be removed.Also,
secrets.yml
now points toENV['SECRET_KEY_BASE']
for production, but before the upgrade to Rails 4.1, the env var was calledSECRET_TOKEN
. This will cause issues during Heroku deployment. The env var should either stay the same, or a note should be added to the README.Thoughts?
The text was updated successfully, but these errors were encountered: