我已将我开始贡献的Rails应用程序的开发版本分叉到我的笔记本电脑上,它使用PostgreSQL作为它的数据库。
我已经用brew安装了postgresql,接下来该怎么做?
答案 0 :(得分:1)
使用bundle install
在' development'下添加您的数据库凭据到config / database.yml。部分
看起来像
development:
adapter: postgresql
database: <db_name>
host: localhost
pool: 5
timeout: 5000
username: <postgres username>
password: <postgres_password>
运行rake db:create
运行rake db:migrate
使用rails server
你很高兴。