在我的Mac OS X 10.7.3上為heroku開發rails程式

來源:互聯網
上載者:User

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`查看日誌.

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.