aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Monteiro <marknr.monteiro@protonmail.com>2020-03-15 17:49:13 +0100
committerMark Monteiro <marknr.monteiro@protonmail.com>2020-03-15 17:49:13 +0100
commit923313bb1cda2f265c6fa62f8b2b3f053cafd5a4 (patch)
tree0999995883180601f6101268d73fd177bb9ae985
parent5d482590463232d1462b2f4738920bbd05c25165 (diff)
Add debugging profile for running the server without web content
-rw-r--r--Jellyfin.Server/Properties/launchSettings.json11
1 files changed, 11 insertions, 0 deletions
diff --git a/Jellyfin.Server/Properties/launchSettings.json b/Jellyfin.Server/Properties/launchSettings.json
new file mode 100644
index 000000000..d68a611c1
--- /dev/null
+++ b/Jellyfin.Server/Properties/launchSettings.json
@@ -0,0 +1,11 @@
+{
+ "profiles": {
+ "Jellyfin.Server": {
+ "commandName": "Project"
+ },
+ "Jellyfin.Server (nowebcontent)": {
+ "commandName": "Project",
+ "commandLineArgs": "--nowebcontent"
+ }
+ }
+} \ No newline at end of file