-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Frequently Asked Questions
Nathan Broadbent edited this page Dec 17, 2011
·
8 revisions
Run the following from the command prompt:
$ RAILS_ENV=production && rake crm:setup
When using Mongrel web server launch it using the following command:
$ ruby script/server -e production
or for Rails 3.0+
$ rails server -e production
When running with Apache web server and Phusion Passenger (also know as mod_rails) set RailsEnv production
in httpd.conf
file. See Passenger User’s Guide for more details.
Edit config/settings.yml
configuration file, then run:
$ rake crm:settings:load
First off, make backup copy of your database:
$ mysqldump -u username -p -d fat_free_crm_production > fat_free_crm_production.sql
Run migrations to bring database up to date:
$ rake db:migrate
Review config/settings.yml
configuration file, then load the latest settings:
$ rake crm:settings:load