Set up a Fat Free CRM Instance on Heroku
You will first need to install the heroku gem on your system.
gem install heroku
To set up Fat Free CRM on Heroku, run the following commands:
app_name="{{organization-crm}}" # <- Replace with your desired application name
heroku create $app_name --stack cedar
git push heroku master
heroku run rake db:migrate
heroku run rake ffcrm:setup:admin USERNAME=admin PASSWORD=admin EMAIL=admin@example.com
heroku config:add HEROKU=true
All done! You should now be able to visit {{app_name}}.heroku.com