Skip to content

Instantly share code, notes, and snippets.

@MatthieuSegret
Created October 24, 2012 07:25
Show Gist options
  • Save MatthieuSegret/3944539 to your computer and use it in GitHub Desktop.
Save MatthieuSegret/3944539 to your computer and use it in GitHub Desktop.
$ mv MyNotes MyNotesOld
$ rails new MyNotes
$ cd MyNotes
# dans le Gemfile
gem 'quiet_assets'
gem 'thin'
gem 'simple_form'
$ bundle install
$ rails generate simple_form:install --bootstrap
$ rails generate scaffold note title:string content:text
$ rake db:migrate
$ rm -f public/index.html
$ rails server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment