-
Notifications
You must be signed in to change notification settings - Fork 63
Develop mode
gazeldx edited this page Jan 20, 2013
·
11 revisions
开发模式是指程序员在本机调试运行mystory的源代码。
建议用Ubuntu OS或者Mac OS.
因为mystory中用到的很多gem在Windows下无法运行。所以Windows下开发有两种方案:
-
安装虚拟机,在虚拟机中运行Ubuntu
-
在Windows中安装Ubuntu。结果是Windows为主系统,Ubuntu为辅,安装完后还可以在Windows中移除Ubuntu系统。见:http://www.ubuntu.com/download/desktop/windows-installer/
开发模式中要把以下内容加到/etc/hosts 中
127.0.0.1 yourdomain.com
127.0.0.1 yourdomain2.com
127.0.0.1 m.yourdomain2.com
127.0.0.1 webmaster.yourdomain2.com
这里的域名和config/config.yml中的
defaults: &defaults
domain: yourdomain.com
...
development:
<<: *defaults
domain: yourdomain2.com
一致。
所有的rake操作都不用加RAILS_ENV=production了,因为默认就是开发模式
$ cd mystory
$ rake db:setup
$ rake db:seed