docs/.fleet/run.json

23 lines
522 B
JSON

{
"configurations": [
{
"type": "command",
"name": "Install",
"program": "poetry",
"args": ["install", "--no-root"],
},
{
"type": "command",
"name": "Rebuild",
"program": "poetry",
"args": ["run", "mkdocs", "build"],
},
{
"type": "command",
"name": "Serve",
"program": "poetry",
"args": ["run", "mkdocs", "serve"],
},
]
}