我遵循了这个非常有用的教程:
http://blog.willj.net/2011/05/31/setting-up-postgresql-for-ruby-on-rails-development-on-os-x/
我真的很想运行rails new myapp
并自动设置 postgres 数据库。有什么方法可以使用Rails 应用程序模板或类似的东西来做到这一点?
我遵循了这个非常有用的教程:
http://blog.willj.net/2011/05/31/setting-up-postgresql-for-ruby-on-rails-development-on-os-x/
我真的很想运行rails new myapp
并自动设置 postgres 数据库。有什么方法可以使用Rails 应用程序模板或类似的东西来做到这一点?
在基于 Unix 的系统上:
sudo -u postgres createuser -d -R -P APPNAME
sudo -u postgres createdb -O APPNAME APPNAME
如果您不记得,您可以创建一个脚本并将其放在 $PATH 中的某个位置。
实际上,您不需要在每次创建新的 rails 应用程序时都创建新用户。
您所要做的就是创建新应用程序并更改username
您的database.yml
development:
adapter: postgresql
encoding: unicode
database: newapp_development
pool: 5
username: #your username
password:
...
不仅仅是:
rake db:create:all