mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-08 06:15:26 +00:00
f605addb71
* chore: resolve merge conflict * ci: changes for version 15 * chore: upgrade python and nodejs * ci: fix v15 build * fix: add redis_socketio for backward compatibility * ci: fix v15 build * ci: fix test endpoint changed to erpnext.templates.pages.search_help.get_help_results_sections
70 lines
2.0 KiB
JSON
70 lines
2.0 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Bench Web",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/frappe-bench/apps/frappe/frappe/utils/bench_helper.py",
|
|
"args": [
|
|
"frappe",
|
|
"serve",
|
|
"--port",
|
|
"8000",
|
|
"--noreload",
|
|
"--nothreading"
|
|
],
|
|
"pythonPath": "${workspaceFolder}/frappe-bench/env/bin/python",
|
|
"cwd": "${workspaceFolder}/frappe-bench/sites",
|
|
"env": {
|
|
"DEV_SERVER": "1"
|
|
}
|
|
},
|
|
{
|
|
"name": "Bench Short Worker",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/frappe-bench/apps/frappe/frappe/utils/bench_helper.py",
|
|
"args": ["frappe", "worker", "--queue", "short"],
|
|
"pythonPath": "${workspaceFolder}/frappe-bench/env/bin/python",
|
|
"cwd": "${workspaceFolder}/frappe-bench/sites",
|
|
"env": {
|
|
"DEV_SERVER": "1"
|
|
}
|
|
},
|
|
{
|
|
"name": "Bench Long Worker",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/frappe-bench/apps/frappe/frappe/utils/bench_helper.py",
|
|
"args": ["frappe", "worker", "--queue", "long"],
|
|
"pythonPath": "${workspaceFolder}/frappe-bench/env/bin/python",
|
|
"cwd": "${workspaceFolder}/frappe-bench/sites",
|
|
"env": {
|
|
"DEV_SERVER": "1"
|
|
}
|
|
},
|
|
{
|
|
"name": "Honcho SocketIO Watch Schedule Worker",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "/home/frappe/.local/bin/honcho",
|
|
"pythonPath": "${workspaceFolder}/frappe-bench/env/bin/python",
|
|
"cwd": "${workspaceFolder}/frappe-bench",
|
|
"console": "internalConsole",
|
|
"args": [
|
|
"start",
|
|
"socketio",
|
|
"watch",
|
|
"schedule",
|
|
"worker_short",
|
|
"worker_long",
|
|
"worker_default"
|
|
]
|
|
}
|
|
]
|
|
}
|