diff --git a/docs/30-quick-start.mdx b/docs/30-quick-start.mdx index 16dc682..9d4d894 100644 --- a/docs/30-quick-start.mdx +++ b/docs/30-quick-start.mdx @@ -24,4 +24,17 @@ To use work through the exercises, we need to install the official MongoDB GUI: ![](/img/open-shell-compass.png) +### 5. Switch to the "library" database + +The default database that's selected when you open the MongoDB shell is `test`. You will be working with the `library` database. +To select it type the following command in the terminal emulator: + +``` +use library +``` + +!["A screenshot of the MongoDB Shell in the Compass UI showing the command 'use library'"](/img/use-library-mongosh.png) + +Press **Enter** to confirm the selection. + That's it for the setup, let's get our hands dirty! diff --git a/static/img/use-library-mongosh.png b/static/img/use-library-mongosh.png new file mode 100644 index 0000000..5f3bc4e Binary files /dev/null and b/static/img/use-library-mongosh.png differ