docs/.fleet/run.json

30 lines
757 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"],
},
{
"type": "command",
"name": "Generate MicroUtils",
"program": "kotlin",
"args": ["../../generate_from_template.kts"],
"workingDir": "./docs/micro_utils/",
},
]
}