Browse Source

Add debugging profile for running the server without web content

Mark Monteiro 5 years ago
parent
commit
923313bb1c
1 changed files with 11 additions and 0 deletions
  1. 11 0
      Jellyfin.Server/Properties/launchSettings.json

+ 11 - 0
Jellyfin.Server/Properties/launchSettings.json

@@ -0,0 +1,11 @@
+{
+  "profiles": {
+    "Jellyfin.Server": {
+      "commandName": "Project"
+    },
+    "Jellyfin.Server (nowebcontent)": {
+      "commandName": "Project",
+      "commandLineArgs": "--nowebcontent"
+    }
+  }
+}