whazzmaster / fitgem-client

Example client use of the fitgem oauth library to integrate with fitbit.com
MIT License
35 stars 9 forks source link

Some tips from attempting Heroku deployment #12

Open stationstops opened 10 years ago

stationstops commented 10 years ago

gem 'rails_12factor' - prevents warnings about older gems when pushing to Heroku

gem 'sass', '3.2.13' - Avoids problems with sass caching on Heroku

Also, devise required config.secret_key ='somehash' to be added to the initializer. I don't know anything about devise so I just cut and pasted the one it gave me and it worked.

whazzmaster commented 10 years ago

Thanks for the tips! Yeah, this thing is getting out of date. It may be time to update it to a Rails 4 project.

stationstops commented 10 years ago

No worries at all - I've never really used RoR much before (but loved Heroku with Scala Play 2), but your app was very easy to get up and running and saved me a ton of time - THANK YOU!