0

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

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

4

1 回答 1

1
  1. 使用安装 gembundle install

  2. 将您的数据库凭据添加到“开发”部分下的 config/database.yml

它看起来像

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

你很高兴。

于 2013-07-09T19:54:20.957 回答