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

docs: fix npx command to create new mud project #355

Merged
merged 1 commit into from
Jan 26, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ MUD is MIT-licensed, open source and free to use.
## Quickstart

```
npx mud create my-project
npx @latticexyz/cli create my-project
```

![Scaffolding a new project with the MUD CLI.](/public/mud-create.gif)
Expand Down
2 changes: 1 addition & 1 deletion guides/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Let's create our first MUD project!
Run the following command in the console of your choice to create a new MUD project in `my-project` using the `minimal` template.

```shell
npx mud create my-project --template minimal
npx @latticexyz/cli create my-project --template minimal
```

Next, run `yarn dev` in the root directory of your new project to start the development server (web client and local Ethereum node).
Expand Down