每当我创建一个新的rails应用程序时,如何创建Postgres用户和数据库?

时间:2012-08-05 20:31:46

标签: ruby-on-rails ruby-on-rails-3 postgresql rails-postgresql

我遵循了这个非常有用的教程:

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或类似的东西吗?

2 个答案:

答案 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