I am trying to push my project up to Heroku. I have been using:
gem 'dotenv-rails', :groups => [:development, :test]
Because I am using recpatcha and need to export my keys to the app in development.
When I try to push the code to heroku I noticed this error message:
remote: ! NameError: uninitialized constant Dotenv
So I commented out the Dotenv gem and any Dotenv variables in the app. I ran
$ bundle exec rake -P
Then tried the push again. I am still getting the same error from Heroku. Do I need to reset my gemfiles somehow?
rails_project/cofig/
Create one file and named itdotenv_load.rb
Into this new file paste this coderequire 'dotenv' Dotenv.load
. Then findsecret_key_base
in your project. Copy the value ofsecret_key_base
and paste this intoboot.rb
like thisENV["SECRET_KEY_BASE"] = "YOUR SECRET KEY BASE"
– Jackfruit