1
0
Fork 0
deploying-rails-app/slides/build-a-rails-app.md
2016-03-08 18:12:31 -05:00

12 lines
266 B
Markdown

## Begin a Rails App
```
gem install rails && rbenv rehash
rails new jokes && cd jokes
bundle exec rails generate scaffold Joke joke:string punchline:string
bundle exec rake db:migrate
```
note:
Put your speaker notes here.
You can see them pressing 's'.