This app can be used to bootstrap resources in first Rails app.
The app adds comments targeted at Rails Girls students to controllers, models and views etc.
Like a mini-inline tutorial that explains things briefly and gives pointers to guides or other resources.
git clone https://github.com/railsgirls-generator-app/railsgirls-app.git
cd railsgirls-app/app
- Install dependencies
bundle install
- Create new Controller
rails generate controller <ControllerName>
- Create new Model
rails generate model <ModelName>
- Create new Scaffold
rails generate scaffold <FileName>
rails server
Open in browser
localhost:3000