为forked rails应用程序设置PostgreSQL

时间:2013-07-09 19:25:26

标签: ruby-on-rails postgresql

我已将我开始贡献的Rails应用程序的开发版本分叉到我的笔记本电脑上,它使用PostgreSQL作为它的数据库。

我已经用brew安装了postgresql,接下来该怎么做?

1 个答案:

答案 0 :(得分:1)

  1. 使用bundle install

  2. 安装宝石
  3. 在' development'下添加您的数据库凭据到config / database.yml。部分

  4. 看起来像

    development:
      adapter: postgresql
      database: <db_name>
      host: localhost
      pool: 5
      timeout: 5000
      username: <postgres username>
      password: <postgres_password>
    
    1. 运行rake db:create

    2. 运行rake db:migrate

    3. 使用rails server

    4. 启动服务器

      你很高兴。