Skip to content
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
4 changes: 2 additions & 2 deletions docs-src/0.7/src/essentials/fullstack/project_setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -243,10 +243,10 @@ To launch the server, you can choose one of two options:

If your server is simple enough, then option 1 can be a decent option since it automatically integrates with `dx serve`.

However, if you choose to have a dedicated server binary, then you'll need to use the `@client` and `@server` modifiers to use a diffeent binary:
However, if you choose to have a dedicated server binary, then you'll need to use the `@client` and `@server` modifiers to use a different binary:

```sh
dx serve @client --bin dog-app @serer --bin pet-api
dx serve @client --bin dog-app @server --bin pet-api
```

The built-in "Workspace" Dioxus Template can serve as a good starting point for workspace setups.