Skip to content

Commit

Permalink
Fix deploy command in getting-started doc (#53)
Browse files Browse the repository at this point in the history
* Fix deploy command in doc

* remove mac os x bit as I haven't finished running tests locally
  • Loading branch information
ekzhu committed Mar 20, 2024
1 parent c16e1dd commit 928b7cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/docs/getting-started/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Now, you are ready to deploy the Garnet server. This is simple, run the below::

```bash
cd main/GarnetServer
dotnet run -c Release --f net8.0
dotnet run -c Release -f net8.0
```

:::tip
Expand All @@ -53,7 +53,7 @@ By default, Garnet listens to TCP port 3278, make sure to adjust your firewall s
To see the configurable options and their defaults, run the below command. You can configure index size, memory size, page size, data file paths and checkpoint paths, IP address to bind to, port number to run on, etc.

```bash
dotnet run -c Release --f net8.0 -- --help
dotnet run -c Release -f net8.0 -- --help
```

:::tip
Expand Down

0 comments on commit 928b7cc

Please sign in to comment.