Skip to content

Develop mode

gazeldx edited this page Jan 20, 2013 · 11 revisions

开发模式

开发模式是指程序员在本机调试运行mystory的源代码。

操作系统

建议用Ubuntu OS或者Mac OS.

因为mystory中用到的很多gem在Windows下无法运行。所以Windows下开发有两种方案:

  1. 安装虚拟机,在虚拟机中运行Ubuntu

  2. 在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

产品模式

主机和域名

安装软件和源代码

设置和管理

升级


开发模式

Clone this wiki locally