5cca8bffea
Added profiles in launchSettings to start either the web client or the swagger API page. Removed --noautorunwebapp as this is the default functionality.
24 lines
606 B
JSON
24 lines
606 B
JSON
{
|
|
"profiles": {
|
|
"Jellyfin.Server": {
|
|
"commandName": "Project",
|
|
"launchBrowser": true,
|
|
"launchUrl": "web",
|
|
"applicationUrl": "http://localhost:8096",
|
|
"environmentVariables": {
|
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
}
|
|
},
|
|
"Jellyfin.Server (nowebclient)": {
|
|
"commandName": "Project",
|
|
"launchBrowser": true,
|
|
"launchUrl": "api-docs/swagger",
|
|
"applicationUrl": "http://localhost:8096",
|
|
"environmentVariables": {
|
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
},
|
|
"commandLineArgs": "--nowebclient"
|
|
}
|
|
}
|
|
}
|