diff --git a/website/docs/getting-started/build.md b/website/docs/getting-started/build.md index 9a312f5436..aa110d44a1 100644 --- a/website/docs/getting-started/build.md +++ b/website/docs/getting-started/build.md @@ -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 @@ -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