18 lines
403 B
JSON
18 lines
403 B
JSON
{
|
|
"version": "0.0.1",
|
|
"configurations": [
|
|
{
|
|
"name": "api",
|
|
"runtimeExecutable": "dotnet",
|
|
"runtimeArgs": ["run", "--project", "src/Backend/SolutionErp.Api", "--urls", "http://localhost:5443"],
|
|
"port": 5443
|
|
},
|
|
{
|
|
"name": "fe-admin",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": ["run", "dev", "--prefix", "fe-admin"],
|
|
"port": 8082
|
|
}
|
|
]
|
|
}
|