Ajout tâches pour vscodium pour servir mkdocs
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-10-02 15:11:25 +02:00
parent 34345486cd
commit ef7510c53d
2 changed files with 35 additions and 0 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
build/*
*-manual.pdf
.venv/
**/*.pyc

34
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,34 @@
{
// 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": []
}
]
}