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