rails版本為3.1,OS X版本10.7.3,postgresql版本9.1.3j
Table of Contents
- 1 資料庫必須用postgresql
- 2 在OS X 10.7.3上安裝postgresql
- 3 檢測已安裝的postgresql
- 4 資料庫用postgresql的rails項目
- 5 部署web程式到heroku
1 資料庫必須用postgresql
heroku官方首頁反對開發版本用sqlite3而生產版本用postgresql.
2 在OS X 10.7.3上安裝postgresql
首先,檢查你的OS X版本,從10.7開始OS X內建postgresql
sw_vers -productVersion
如果要安裝最新版的postgresql,必須刪除老版本的資料庫。具體做法參考這篇文章,實際上也就是一行命令:
curl http://nextmarvel.net/blog/downloads/fixBrewLionPostgres.sh | sh
強烈推薦用homebrew安裝資料庫,
brew install postgresql
具體安裝細節請參考postgresql官方wiki.
3 檢測已安裝的postgresql
這裡是一些資料庫基本操作的官方文檔. 可以`psql -l`看一些已有資料庫列表.
4 資料庫用postgresql的rails項目
rails new myapp --database=postgresql
如果是從一個已經使用sqlite的項目切換資料庫,就必須改config/database.yml,有一些catch,請參考stackoverflow上的討論.
然後,`createdb myapp_development`建立postgresql資料庫,`rake db:migrate`建立資料庫schema並匯入資料在本機資料庫.簡單測試可證明資料庫和web程式可以無縫工作.
最後不要忘記`git commit`最新代碼.
5 部署web程式到heroku
請參考heroku官方文檔,提醒一下不要忘記運行`heroku run rake db:migrate`,否則資料庫是空的.
部署結束後可以運行`heroku open`開啟瀏覽器訪問web程式首頁.
如開啟網站有問題,可以`heroku logs`查看日誌.