All checks were successful
Deploy SOLUTION_ERP / build-deploy (push) Successful in 11m37s
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
24 lines
578 B
JSON
24 lines
578 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
|
|
},
|
|
{
|
|
"name": "fe-user",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": ["run", "dev", "--prefix", "fe-user", "--", "--port", "8081"],
|
|
"port": 8081
|
|
}
|
|
]
|
|
}
|