mirror of https://github.com/wekan/wekan
The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.3 KiB
57 lines
1.3 KiB
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Meteor: Node",
|
|
"runtimeExecutable": "meteor",
|
|
"runtimeArgs": [
|
|
"--port=4000",
|
|
"--exclude-archs=web.browser.legacy,web.cordova",
|
|
"--raw-logs"
|
|
],
|
|
"env": {
|
|
"WRITABLE_PATH": "/tmp/uploads",
|
|
},
|
|
"outputCapture": "std",
|
|
"restart": true,
|
|
"timeout": 60000
|
|
},
|
|
{
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"name": "Meteor: Chrome",
|
|
"url": "http://localhost:4000",
|
|
"sourceMapPathOverrides": {
|
|
"meteor://💻app/*": "${workspaceFolder}/*"
|
|
},
|
|
"userDataDir": "${env:HOME}/.vscode/chrome"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Test: Node",
|
|
"runtimeExecutable": "meteor",
|
|
"runtimeArgs": [
|
|
"test",
|
|
"--port=4040",
|
|
"--exclude-archs=web.browser.legacy,web.cordova",
|
|
"--driver-package=meteortesting:mocha",
|
|
"--settings=settings.json",
|
|
"--raw-logs"
|
|
],
|
|
"env": {
|
|
"TEST_WATCH": "1"
|
|
},
|
|
"outputCapture": "std",
|
|
"timeout": 60000
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "Meteor: All",
|
|
"configurations": ["Meteor: Node", "Meteor: Chrome"]
|
|
}
|
|
]
|
|
}
|
|
|