0
剛剛得到這個回報率的應用程序的工作,只是需要一些澄清究竟跑到幕後,簡單,所以我可以看看每一個步驟:有人可以簡要總結一下每條線在這裏做什麼嗎?
Clone the git repo
git clone git://github.com/railsdog/spree.git spree
cd spree
Install the gem dependencies
bundle install
Create a sanbox rails application for testing purposes
rails new sandbox -m sample/sandbox_template.rb
cd sandbox
Generate the necessary Spree files
rails g spree:install
Bootstrap the database (run the migrations, create seed data, optionally load sample data.)
rake db:migrate db:seed db:sample
Start the server
rails server
我知道一號線是幹什麼的,混帳克隆...
但捆綁安裝從哪個文件下載所有的依賴關係? 對rails g spree的調用在哪裏進行:install look生成文件?
我知道rake就像'make',但是它真的在編譯新代碼嗎? 或者rake只是運行遷移腳本等,即不進行編譯。
謝謝,那麼哪裏是大禮包:安裝說明?什麼文件? – Blankman 2010-09-30 14:43:37
你不知道它做了什麼,它只是自動爲你安裝東西。如果你想知道它背後的代碼是什麼,你可以看看「spree/lib/generators」文件夾 – Maran 2010-09-30 20:45:10