diff --git a/docs/getting-started/quick-start.md b/docs/getting-started/quick-start.md index 48d24938f8..d49b19fd07 100644 --- a/docs/getting-started/quick-start.md +++ b/docs/getting-started/quick-start.md @@ -13,6 +13,7 @@ Before starting, make sure you have: - **Rails 7+** application (Rails 5.2+ supported) - **Ruby 3.0+** (required) - **Node.js 20+** and **Yarn** +- **Foreman or Overmind** (for running `bin/dev`) - **Basic familiarity** with React and Rails > 💡 **Don't have a Rails app?** Run `rails new my_react_app` first. @@ -42,6 +43,11 @@ Take a look at the files created by the generator. ## 🎯 Step 2: Start the Development Server (1 minute) +> **Note:** Ensure you have `overmind` or `foreman` installed to run `bin/dev`. +> +> - **overmind**: `brew install overmind` (macOS) or see [installation guide](https://github.com/DarthSim/overmind#installation) +> - **foreman**: `gem install foreman` (install globally, not in your project bundle - [details](https://github.com/ddollar/foreman/wiki/Don't-Bundle-Foreman)) + Start both Rails and the Webpack dev server: ```bash diff --git a/docs/getting-started/using-react-on-rails.md b/docs/getting-started/using-react-on-rails.md index 9dd7f672d0..4dd50cbf1a 100644 --- a/docs/getting-started/using-react-on-rails.md +++ b/docs/getting-started/using-react-on-rails.md @@ -149,6 +149,8 @@ The generator creates `bin/dev` for starting both: - Rails server (port 3000) - Webpack dev server (for hot reloading) +> **Note:** You need `overmind` or `foreman` installed to run `bin/dev`. Install with `brew install overmind` (macOS) or `gem install foreman` (globally). See the [Quick Start Guide](./quick-start.md#-step-2-start-the-development-server-1-minute) for detailed installation instructions. + --- ## Render-Functions and RailsContext