Add Version identification to footer

This commit is contained in:
2021-10-08 23:18:56 +02:00
parent 4b70b70a1d
commit c203317320
6 changed files with 72 additions and 7 deletions

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

@ -0,0 +1,13 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "versiondump",
"type": "shell",
"command": "git describe > ${workspaceFolder}/backend/app/.version",
"problemMatcher": []
}
]
}