mirror of
https://github.com/InsanusMokrassar/docs.git
synced 2024-11-08 09:24:00 +00:00
30 lines
757 B
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/",
|
|
},
|
|
]
|
|
}
|