chore: Create VS Code configs

This commit is contained in:
Michael Currin
2020-05-02 22:39:11 +02:00
parent a1396d49f2
commit 4f2c416522
2 changed files with 30 additions and 0 deletions

3
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"python.pythonPath": "venv/bin/python"
}

27
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,27 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "mkdocs build",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "serve",
"type": "shell",
"command": "mkdocs serve"
},
{
"label": "deploy",
"type": "shell",
"command": "mkdocs gh-deploy"
}
]
}