add support for devcontainers and direct run

This commit is contained in:
Tobias Fenster 2022-03-01 22:17:44 +00:00
parent c2804fc330
commit 9cdaaf3a39
3 changed files with 92 additions and 0 deletions

11
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,11 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Start local Hugo server",
"type": "shell",
"command": "hugo serve",
"problemMatcher": []
}
]
}