aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Monteiro <marknr.monteiro@protonmail.com>2020-03-21 21:28:34 +0100
committerMark Monteiro <marknr.monteiro@protonmail.com>2020-03-21 21:28:34 +0100
commitedc974e4c01649ab6e0286f617c6b371a8735391 (patch)
tree69eb7c941462c699f427977b5665ef7fa3deb540
parent2184553d1583c1346bd4757bfee0c510639281c4 (diff)
Set 'ASPNETCORE_ENVIRONMENT=Development' when running from visual studio
-rw-r--r--Jellyfin.Server/Properties/launchSettings.json10
1 files changed, 10 insertions, 0 deletions
diff --git a/Jellyfin.Server/Properties/launchSettings.json b/Jellyfin.Server/Properties/launchSettings.json
new file mode 100644
index 000000000..9140f552b
--- /dev/null
+++ b/Jellyfin.Server/Properties/launchSettings.json
@@ -0,0 +1,10 @@
+{
+ "profiles": {
+ "Jellyfin.Server": {
+ "commandName": "Project",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ }
+ }
+}