我已经将我开始贡献的 Rails 应用程序的开发版本分叉到我的笔记本电脑上,它使用 PostgreSQL 作为数据库。
我已经用brew安装了postgresql,接下来我该怎么办?
我已经将我开始贡献的 Rails 应用程序的开发版本分叉到我的笔记本电脑上,它使用 PostgreSQL 作为数据库。
我已经用brew安装了postgresql,接下来我该怎么办?
使用安装 gembundle install
将您的数据库凭据添加到“开发”部分下的 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
你很高兴。