Files
pgsql-jellyfin/Jellyfin.Server/Properties/launchSettings.json
T
wjones e345c5c5a7 Update publish profile and web dir config for portability
Changed publish profile path to E: drive and updated publish history. Switched JELLYFIN_WEB_DIR from absolute to relative path ("webroot") in launchSettings.json for improved portability and consistency across environments.
2026-02-26 08:45:04 -05:00

33 lines
900 B
JSON

{
"profiles": {
"Jellyfin.Server": {
"commandName": "Project",
"launchBrowser": true,
"applicationUrl": "http://localhost:8096",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"JELLYFIN_WEB_DIR": "webroot"
}
},
"Jellyfin.Server (nowebclient)": {
"commandName": "Project",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"JELLYFIN_WEB_DIR": "webroot"
},
"commandLineArgs": "--nowebclient"
},
"Jellyfin.Server (API Docs)": {
"commandName": "Project",
"launchBrowser": true,
"launchUrl": "api-docs/swagger",
"applicationUrl": "http://localhost:8096",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"JELLYFIN_WEB_DIR": "webroot"
},
"commandLineArgs": "--nowebclient"
}
}
}