You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add installation instructions and improve note placement
Following review feedback, this commit:
- Adds installation instructions for both overmind and foreman
- Moves the note before the command block so developers see prerequisites first
- Confirms file ends with newline as required by CLAUDE.md
Installation instructions include:
- overmind: brew install for macOS with link to full installation guide
- foreman: gem install with important note about global installation
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: docs/getting-started.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,11 @@ cd PROJECT_NAME
66
66
bundle exec rails generate react_on_rails:install
67
67
```
68
68
69
+
> **Note:** Ensure that you have `overmind` or `foreman` installed to run `bin/dev`.
70
+
>
71
+
> -**overmind**: `brew install overmind` (macOS) or see [installation guide](https://github.com/DarthSim/overmind#installation)
72
+
> -**foreman**: `gem install foreman` (install globally, not in your project bundle - [details](https://github.com/ddollar/foreman/wiki/Don't-Bundle-Foreman))
73
+
69
74
Start the app:
70
75
71
76
```bash
@@ -74,8 +79,6 @@ bin/dev # start with hmr
74
79
bin/dev static # start with statically created bundles (no HMR)
75
80
```
76
81
77
-
> **Note:** Ensure that you have `overmind` or `foreman` installed to run `bin/dev`.
0 commit comments