Slide 54
Slide 54 text
rails new pavadinimas
cd pavadinimas
rails server
rails generate scaffold Post content:string username:string
rake db:migrate
gem “twitter-bootstrap-rails" įdėti į Gemfile
bundle install
rails generate bootstrap:install static
Pažiūrėti http:/
/getbootstrap.com/css ir įdėti blockquotes
į app/views/posts/index.html.erb
gem “sqlite3”, group: :development į Gemfile
gem “pg”, group: :production į Gemfile
gem “rails_12factor”, group: :production į Gemfile
bundle install --without production
Užsiregistruoti heroku.com ir įsirašyti Heroku Toolbelt
heroku create; git init; git add .; git commit -m “Initial”
git push heroku master; heroku run rake db:migrate