mirror of
https://github.com/InsanusMokrassar/docs.git
synced 2024-11-10 02:14:00 +00:00
23 lines
522 B
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"],
|
|
},
|
|
]
|
|
}
|