Let's create a demo app Rails 5 app using Active Admin. We can also practice using git along the way.
- Create a new Rails app.
- Initialize the Rails app folder as a git repository.
- Add and commit the existing Rails app files/folders to your git repo.
- Create a new git branch called
adding_models
- Generate a Category model:
rails g model Category name:string
- Add and commit using git.