aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Monteiro <marknr.monteiro@protonmail.com>2020-03-21 21:06:30 +0100
committerMark Monteiro <marknr.monteiro@protonmail.com>2020-03-21 21:06:30 +0100
commit41de0bd24569341199a7caed21469b7813d3c98d (patch)
tree1c7f643f3f5ba846f7dbc662a832734a63c282f4
parent842ec048284acfbe9711e87ea4fce10adfa890bb (diff)
Run in development mode by default from Visual Studio
-rw-r--r--Jellyfin.Server/Properties/launchSettings.json8
1 files changed, 7 insertions, 1 deletions
diff --git a/Jellyfin.Server/Properties/launchSettings.json b/Jellyfin.Server/Properties/launchSettings.json
index 53d9fe1656..b6e2bcf976 100644
--- a/Jellyfin.Server/Properties/launchSettings.json
+++ b/Jellyfin.Server/Properties/launchSettings.json
@@ -1,10 +1,16 @@
{
"profiles": {
"Jellyfin.Server": {
- "commandName": "Project"
+ "commandName": "Project",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
},
"Jellyfin.Server (nowebclient)": {
"commandName": "Project",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ },
"commandLineArgs": "--nowebclient"
}
}