Created
October 24, 2012 07:25
-
-
Save MatthieuSegret/3944539 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ 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