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