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

Fix install instructions in Solidus Guides #3833

Merged
merged 1 commit into from
Nov 17, 2020
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,13 @@ You can find more details on Solidus' dependencies in the
First, we need a new Rails project:

```bash
rails new your_solidus_project_name --skip_webpack_install
rails new your_solidus_project_name --skip-javascript
```

This command will create a new Rails application without installing
[webpacker][webpacker], which is not required for a sample Solidus store. You
are free to install and configure webpacker in your Solidus store though.
the JavaScript compiler shipped with Rails by default ([webpacker][webpacker]),
which is not required for a sample Solidus store.
You are still free to install and configure it in your Solidus store though.

Once the new project has finished being created, we can open the project's newly
created `Gemfile` in a text editor and add the required Solidus gems as new
Expand Down