Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Documentation and Kata 000 #167

Merged
merged 2 commits into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ We host a complete demonstration environment online for you to play with, see li
Relevant username and passwords are listed in [TECHNICAL_DETAILS.md](TECHNICAL_DETAILS.md#accounts-setup) file.

Working with macOS? Pop open all the tuning related web pages with one terminal command:
> open http://localhost:4000 http://localhost:8983 http://localhost:9000 http://localhost:3000 http://localhost:7979
> open http://localhost:4000 http://localhost:8983 http://localhost:9000 http://localhost:3000


# 5 Minutes to Run Chorus!
Expand Down
2 changes: 1 addition & 1 deletion TECHNICAL_DETAILS.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ curl http://localhost:8983/solr/ecommerce/config -H 'Content-type:application/js

Create a user with the email `demo@example.com` and the password `password`:
```sh
docker-compose run quepid thor user:create -a demo@example.com "Demo User" password
docker-compose run quepid bundle exec thor user:create -a demo@example.com "Demo User" password
```

For Quepid case, pick `name` for title, and `id` for identifier. Add `thumb:imageUrl` to the list of fields.
Expand Down
6 changes: 1 addition & 5 deletions katas/000_setting_up_chorus.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,17 +145,13 @@ docker-compose run --rm quepid bin/rake db:setup
We also need to create you an account with Administrator permissions:

```sh
docker-compose run quepid thor user:create -a admin@choruselectronics.com "Chorus Admin" password
docker-compose run quepid bundle exec thor user:create -a admin@choruselectronics.com "Chorus Admin" password
```

Visit Quepid at http://localhost:3000 and log in with the email and password you just set up.

Go through the initial case setup process. Quepid will walk you through setting up a `Movie Cases` case via a Wizard interface, and then show you some of the key features of Quepid's UI. I know you want to skip the tour of Quepid interface, however there is a lot of interactivity in the UI, so it's worth going through the tutorial to get acquainted!

Now, let's go ahead and make sure we publish the results of our evaluation:


Bring up http://localhost:7979 and you will see a relatively unexciting empty dashboard. Don't worry, in our first kata, we'll do a relevancy test and fill this dashboard in.

Last but not least we want to set up what we need to monitor our end user facing applications. We use Prometheus and Grafana for this task. Prometheus is already collecting and storing data. For Grafana we need to set up a user and grant this user administrative rights in Grafana:

Expand Down