mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-04 08:38:34 +00:00
22 lines
498 B
JSON
22 lines
498 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch AFFiNE Cloud",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"runtimeExecutable": "yarn",
|
|
"cwd": "${workspaceFolder}",
|
|
"runtimeArgs": ["affine", "@affine/server", "dev"]
|
|
},
|
|
{
|
|
"name": "Lanuch AFFiNE Web",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"runtimeExecutable": "yarn",
|
|
"cwd": "${workspaceFolder}",
|
|
"runtimeArgs": ["affine", "@affine/web", "dev"]
|
|
}
|
|
]
|
|
}
|