diff --git a/README.md b/README.md index ad45b1c..311d4bf 100644 --- a/README.md +++ b/README.md @@ -20,13 +20,13 @@ And then execute: ## Development -This gem comes bundled with a test app to help you test out new display designs with pre-populated blazer queries. To get the environment up and running: +This gem comes bundled with a test app to help you test out new display designs with pre-populated blazer queries. To get the environment up and running: 1. Clone this repo down to your machine 2. Make sure you have [Dip](https://github.com/brandnewbox/bnb-dip-defaults) installed and configured -3. In your new `bnb_blazer` directory, run `docker-compose up` -4. Once all your containers have spun up, run `dip setup` -5. Navigate to http://localhost:300/blazer in your browser, and away you go! +3. Run `dip setup` +4. In your new `bnb_blazer` directory, run `docker-compose up` +5. Navigate to http://localhost:3000/blazer in your browser, and away you go! For the work of actually overriding the gem, Rails will load any view that we have defined in the `app/views` (not `spec/dummy/app/views`) folder before looking for them in the blazer gem. So any view that we want to override or restyle you just have to create at the same location as it would be found in the blazer gem. E.g. the homepage view for blazer is found at `app/views/blazer/queries/home.html.erb`, so if we want to override what the homepage looks like in our gem then we create a new view at `app/views/blazer/queries/home.html.erb` and copy the existing HTML from the gem and make modifications as necessary.