20 lines
393 B
JSON
20 lines
393 B
JSON
|
|
{
|
||
|
|
"version": "0.0.1",
|
||
|
|
"configurations": [
|
||
|
|
{
|
||
|
|
"name": "frontend",
|
||
|
|
"runtimeExecutable": "npm",
|
||
|
|
"runtimeArgs": ["run", "dev"],
|
||
|
|
"port": 3000,
|
||
|
|
"cwd": "frontend"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"name": "backend",
|
||
|
|
"runtimeExecutable": "uvicorn",
|
||
|
|
"runtimeArgs": ["app.main:app", "--reload", "--port", "8000"],
|
||
|
|
"port": 8000,
|
||
|
|
"cwd": "backend"
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|