- Clone the repo
- Create
.env
files at the root of this project:- .env
- .env.development
- .env.test
- Add
SHOW_TAG_BUTTON=true
to both the 'test' and 'development' versions.- Set this value to
false
in the 'production' (.env file) version. - Note: You have to restart your server after adding these files.
- Set this value to
- Start Guard:
bundle exec guard
rails new plot-notes -T
rails g model list title:string
- Add to gemfile:
gem 'rspec-rails', '~> 3.7'
- Run
bundle install
- Run:
rails generate rspec:install
rails g rspec:model list
rails g controller lists
rails g rspec:feature lists
- Look at GemFile
rails g model note title:string details:string list:references
rails g controller notes
rails g rspec:feature notes
rails g model tag title:string note:references
rails g controller tags