35 lines
652 B
JSON
35 lines
652 B
JSON
{
|
|
// Fichier : .vscode/tasks.json
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Serve user docs",
|
|
"type": "shell",
|
|
"command": "../.venv/bin/mkdocs",
|
|
"args": [
|
|
"serve",
|
|
"-a",
|
|
"localhost:3000"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/user"
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Serve admin docs",
|
|
"type": "shell",
|
|
"command": "../.venv/bin/mkdocs",
|
|
"args": [
|
|
"serve",
|
|
"-a",
|
|
"localhost:3001"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/admin"
|
|
},
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
}
|