aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2020-08-10 12:52:59 +0200
committerGitHub <noreply@github.com>2020-08-10 12:52:59 +0200
commit75f119b57f8085f88621d1874b96d1b5bc9fc3e0 (patch)
tree0487637c5e1e4187e92a6fdc253761b7c880aa7a
parentbacfbbbd58bfa4b31090c6c7b91a7b69370acfda (diff)
parentf98e751d189097e38c73b0f3ffacb2b2cc9bc9df (diff)
Merge pull request #3810 from AlfHou/fix_readme_links
Fix README links and note about setup wizard
-rw-r--r--.vscode/launch.json14
-rw-r--r--README.md2
2 files changed, 14 insertions, 2 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 0f698bfa4..bf1bd65cb 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -6,11 +6,21 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
- // If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/Jellyfin.Server/bin/Debug/netcoreapp3.1/jellyfin.dll",
"args": [],
"cwd": "${workspaceFolder}/Jellyfin.Server",
- // For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
+ "console": "internalConsole",
+ "stopAtEntry": false,
+ "internalConsoleOptions": "openOnSessionStart"
+ },
+ {
+ "name": ".NET Core Launch (nowebclient)",
+ "type": "coreclr",
+ "request": "launch",
+ "preLaunchTask": "build",
+ "program": "${workspaceFolder}/Jellyfin.Server/bin/Debug/netcoreapp3.1/jellyfin.dll",
+ "args": ["--nowebclient"],
+ "cwd": "${workspaceFolder}/Jellyfin.Server",
"console": "internalConsole",
"stopAtEntry": false,
"internalConsoleOptions": "openOnSessionStart"
diff --git a/README.md b/README.md
index a41bfbca8..55d6917ae 100644
--- a/README.md
+++ b/README.md
@@ -166,3 +166,5 @@ To instruct the server not to host the web content, there is a `nowebclient` con
switch `--nowebclient` or the environment variable `JELLYFIN_NOWEBCONTENT=true`.
Since this is a common scenario, there is also a separate launch profile defined for Visual Studio called `Jellyfin.Server (nowebcontent)` that can be selected from the 'Start Debugging' dropdown in the main toolbar.
+
+**NOTE:** The setup wizard can not be run if the web client is hosted separately.