docs/.fleet/run.json

30 lines
757 B
JSON
Raw Permalink Normal View History

2023-06-09 19:50:56 +00:00
{
"configurations": [
{
"type": "command",
"name": "Install",
"program": "poetry",
"args": ["install", "--no-root"],
},
2023-06-09 19:50:56 +00:00
{
"type": "command",
"name": "Rebuild",
2023-06-13 16:18:41 +00:00
"program": "poetry",
"args": ["run", "mkdocs", "build"],
2023-06-09 19:50:56 +00:00
},
{
"type": "command",
"name": "Serve",
2023-06-13 16:18:41 +00:00
"program": "poetry",
"args": ["run", "mkdocs", "serve"],
2023-06-09 19:50:56 +00:00
},
2024-05-04 17:57:45 +00:00
{
"type": "command",
"name": "Generate MicroUtils",
"program": "kotlin",
"args": ["../../generate_from_template.kts"],
"workingDir": "./docs/micro_utils/",
},
2023-06-09 19:50:56 +00:00
]
2023-06-13 16:18:41 +00:00
}