Files
manuals/.vscode/tasks.json
Julien Fastré ef7510c53d
Some checks failed
continuous-integration/drone/push Build is failing
Ajout tâches pour vscodium pour servir mkdocs
2025-10-02 15:11:25 +02:00

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": []
}
]
}