Fix sync metadata script (#5253)

While troubleshooting self-hosting migration, we run into issues with
sync-metadata script introduced by recent changes
This commit is contained in:
Charles Bochet
2024-05-02 15:50:40 +02:00
committed by GitHub
parent 8d90c60ada
commit 3015f4ce31
2 changed files with 22 additions and 1 deletions

18
.vscode/launch.json vendored
View File

@ -33,6 +33,24 @@
"internalConsoleOptions": "openOnSessionStart",
"console": "internalConsole",
"cwd": "${workspaceFolder}/packages/twenty-server/"
},
{
"name": "twenty-server - command debug example",
"type": "node",
"request": "launch",
"runtimeExecutable": "npx",
"runtimeVersion": "18",
"runtimeArgs": [
"nx",
"run",
"twenty-server:command",
"my-command",
"--my-parameter value",
],
"outputCapture": "std",
"internalConsoleOptions": "openOnSessionStart",
"console": "internalConsole",
"cwd": "${workspaceFolder}/packages/twenty-server/"
}
]
}