aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMark Monteiro <marknr.monteiro@protonmail.com>2020-04-19 18:18:53 -0400
committerMark Monteiro <marknr.monteiro@protonmail.com>2020-04-19 18:18:53 -0400
commit6039c6200f78e6ae174d33efc3c3437cb94fa633 (patch)
tree108c072c21d31a74ba7befca401b75423bad6841 /README.md
parent0a9b7c868e798769196e2c93e4359f176f2ceb12 (diff)
Update instructions for running with the dotnet cli
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/README.md b/README.md
index 6007aa3cb..7a81db655 100644
--- a/README.md
+++ b/README.md
@@ -125,9 +125,8 @@ After the required extensions are installed, you can can run the server by press
To run the server from the command line you can use the `dotnet run` command. The example below shows how to do this if you have cloned the repository into a directory named `jellyfin` (the default directory name) and should work on all operating systems.
```bash
-cd jellyfin # Move into the repository directory
-cd Jellyfin.Server # Move into the server startup project directory
-dotnet run # Run the server startup project
+cd jellyfin # Move into the repository directory
+dotnet run --project Jellyfin.Server # Run the server startup project
```
A second option is to build the project and then run the resulting executable file directly. When running the executable directly you can easily add command line options. Add the `--help` flag to list details on all the supported command line options.