2012年8月28日 星期二

[RUBY]ubuntu10.4下的第一支ROR

1.找好位置放你的rails專案 我把他放在/var/www下
$ mkdir projects
$ cd projects
2.建立一個名稱test的專案
$ rails new test
正確新增的話會看到create不少檔案 3.移動到目錄下
cd test
4.啟動伺服器
$ bundle install
正常啟動的話看到 Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed. 5.最後一步
$ rails server 
沒問題的話會看到 => Booting WEBrick => Rails 3.1.0.beta1 application starting in development on http://0.0.0.0:3000 => Call with -d to detach => Ctrl-C to shutdown server 如果看到 Could not find a JavaScript runtime. 就要再安裝 js啦
$ gem install execjs
還是有Could not find a JavaScript runtime.? 那再來XD
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs npm
這樣應該沒問題了 接下來到 http://localhost:3000 去看看 有畫面就沒問題啦 參考資料:http://ihower.tw/rails3/firststep.html

沒有留言:

張貼留言