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
Hi, in your readme it says to run suspenders app --heroku true on creation to set up an app easier for Heroku. However, I didn't do that when I started up a suspenders application, and now get the error KeyError: key not found: "SMTP_ADDRESS" when I try to deploy manually from the Heroku site. I'm wondering if it has something to do with not configuring it on startup? Thank you!
The text was updated successfully, but these errors were encountered:
#First check ENV variables you need from config/environments/production.rb
#You need at least APPLICATION_HOST
heroku config:set APPLICATION_HOST=your-app.herokuapp.com
#Then add node for yarn install, skip if you have 'gem "webpacker", require: false' in Gemfile
heroku buildpacks:set heroku/ruby
heroku buildpacks:add --index 1 heroku/nodejs
#Then push to your heroku git remote, default - heroku, and run db migration
git push herku master
heroku run rails db:migrate
Hi, in your readme it says to run
suspenders app --heroku true
on creation to set up an app easier for Heroku. However, I didn't do that when I started up a suspenders application, and now get the errorKeyError: key not found: "SMTP_ADDRESS"
when I try to deploy manually from the Heroku site. I'm wondering if it has something to do with not configuring it on startup? Thank you!The text was updated successfully, but these errors were encountered: