From 6f9d413c2381bdedc50472cd2137167cc8a0aa52 Mon Sep 17 00:00:00 2001 From: Patrick Brown Date: Thu, 8 Aug 2024 20:53:08 -0700 Subject: [PATCH 1/2] Add `bundle install` step to the getting started guide When I was following the guide I had to do this step manually, and those who are newer to the Ruby ecosystem might not know this command is required before the `bundle exec hanami dev` command. I hope this is helpful! Happy to change as needed! (Or maybe I did something wrong?) Best, Pat --- content/v2.1/introduction/getting-started.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/v2.1/introduction/getting-started.md b/content/v2.1/introduction/getting-started.md index a9012754..ddbc88d4 100644 --- a/content/v2.1/introduction/getting-started.md +++ b/content/v2.1/introduction/getting-started.md @@ -141,6 +141,7 @@ We'll see this structure in more detail as this guide progresses. For now let's get our new app running. In the bookshelf directory, run: ```shell +$ bundle install $ bundle exec hanami dev ``` From d29be764ec74dfe0ae7e604ca3ca7579cf14195a Mon Sep 17 00:00:00 2001 From: Patrick Brown Date: Fri, 9 Aug 2024 09:35:21 -0700 Subject: [PATCH 2/2] Add `bundle install` to 2.0 and 2.2 getting started guides as well --- content/v2.0/introduction/getting-started.md | 1 + content/v2.2/introduction/getting-started.md | 1 + 2 files changed, 2 insertions(+) diff --git a/content/v2.0/introduction/getting-started.md b/content/v2.0/introduction/getting-started.md index 12794d01..4543fb2c 100644 --- a/content/v2.0/introduction/getting-started.md +++ b/content/v2.0/introduction/getting-started.md @@ -120,6 +120,7 @@ We'll see this structure in more detail as this guide progresses. For now let's get our new application running. In the bookshelf directory, run: ```shell +$ bundle install $ hanami server ``` diff --git a/content/v2.2/introduction/getting-started.md b/content/v2.2/introduction/getting-started.md index 4a30bbad..8c67c853 100644 --- a/content/v2.2/introduction/getting-started.md +++ b/content/v2.2/introduction/getting-started.md @@ -143,6 +143,7 @@ We'll see this structure in more detail as this guide progresses. For now let's get our new app running. In the bookshelf directory, run: ```shell +$ bundle install $ bundle exec hanami dev ```