-
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from carif/linux
- Loading branch information
Showing
3 changed files
with
59 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. | ||
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp | ||
// List of extensions which should be recommended for users of this workspace. | ||
"recommendations": [ | ||
"ms-dotnettools.csharp", | ||
"editorconfig.editorconfig" | ||
], | ||
// List of extensions recommended by VS Code that should not be recommended for users of this workspace. | ||
"unwantedRecommendations": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
{ | ||
// jellyfinDir : The directory of the cloned jellyfin server project | ||
// This needs to be built once before it can be used | ||
"jellyfinDir" : "${workspaceFolder}/../jellyfin/Jellyfin.Server", | ||
"jellyfinDir": "${workspaceFolder}/../jellyfin/Jellyfin.Server", | ||
// jellyfinWebDir : The directory of the cloned jellyfin-web project | ||
// This needs to be built once before it can be used | ||
"jellyfinWebDir" : "${workspaceFolder}/../jellyfin-web", | ||
"jellyfinWebDir": "${workspaceFolder}/../jellyfin-web", | ||
// jellyfinDataDir : the root data directory for a running jellyfin instance | ||
// This is where jellyfin stores its configs, plugins, metadata etc | ||
// This is platform specific by default, but on Windows defaults to | ||
// ${env:LOCALAPPDATA}/jellyfin | ||
"jellyfinDataDir" : "${env:LOCALAPPDATA}/jellyfin", | ||
// and on Linux, it defaults to | ||
// ${env:XDG_DATA_HOME}/jellyfin | ||
// However ${env:XDG_DATA_HOME} does not work in Visual Studio Code's development container! | ||
"jellyfinWindowsDataDir": "${env:LOCALAPPDATA}/jellyfin", | ||
"jellyfinLinuxDataDir": "$HOME/.local/share/jellyfin", | ||
// The name of the plugin | ||
"pluginName" : "Jellyfin.Plugin.Template", | ||
} | ||
"pluginName": "Jellyfin.Plugin.Template", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters