feat: Restructure and add content

This commit is contained in:
Michael Currin
2020-05-03 11:17:55 +02:00
parent 52a8f7862a
commit 2b4544320b
12 changed files with 298 additions and 144 deletions

34
.vscode/tasks.json vendored
View File

@@ -5,8 +5,9 @@
"tasks": [
{
"label": "build",
"type": "shell",
"command": "mkdocs build",
"type": "process",
"command": "${config:python.pythonPath}",
"args": ["-m", "mkdocs", "build"],
"problemMatcher": [],
"group": {
"kind": "build",
@@ -15,13 +16,36 @@
},
{
"label": "serve",
"type": "shell",
"command": "mkdocs serve"
"type": "process",
"command": "${config:python.pythonPath}",
"args": ["-m", "mkdocs", "serve"],
"problemMatcher": [],
},
{
"label": "deploy",
"type": "process",
"command": "${config:python.pythonPath}",
"args": ["-m", "mkdocs", "gh-deploy"],
"problemMatcher": [],
},
// Reference globally-installed MkDocs.
{
"label": "build-global",
"type": "shell",
"command": "mkdocs gh-deploy"
"command": "mkdocs build",
"problemMatcher": [],
},
{
"label": "serve-global",
"type": "shell",
"command": "mkdocs serve",
"problemMatcher": [],
},
{
"label": "deploy-global",
"type": "shell",
"command": "mkdocs gh-deploy",
"problemMatcher": [],
}
]
}