-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Setup Heroku
Steve Kenworthy edited this page Nov 27, 2013
·
22 revisions
Using Heroku, you can deploy a Fat Free CRM instance within minutes.
- A heroku account – sign up at https://www.heroku.com/
- The heroku toolkit – see https://toolbelt.heroku.com/ for installation guide
git clone https://github.com/fatfreecrm/fat_free_crm.git /path/to/ffcrm
cd /path/to/ffcrm
heroku login
Add the following line to specify your ruby version in Gemfile (requires bundler > 1.2)
ruby "1.9.3"
Finally, commit the change and push out to heroku:
git add Gemfile
git commit
git push heroku master
heroku run rake db:migrate
heroku run rake ffcrm:setup:admin USERNAME=admin PASSWORD=admin [email protected]
heroku config:add HEROKU=true
heroku ps:scale web=1
heroku open
See https://devcenter.heroku.com/articles/getting-started-with-rails3