formatting

This commit is contained in:
hay-kot 2021-03-14 18:44:15 -08:00
commit 8d974ca2a4
2 changed files with 15 additions and 7 deletions

19
.vscode/tasks.json vendored
View file

@ -6,7 +6,9 @@
"command": "./dev/scripts/docker-compose.dev.sh",
"type": "shell",
"args": [],
"problemMatcher": ["$tsc"],
"problemMatcher": [
"$tsc"
],
"presentation": {
"reveal": "always"
},
@ -17,7 +19,9 @@
"command": "./dev/scripts/docker-compose.sh",
"type": "shell",
"args": [],
"problemMatcher": ["$tsc"],
"problemMatcher": [
"$tsc"
],
"presentation": {
"reveal": "always"
},
@ -26,7 +30,9 @@
{
"label": "Dev: Start local Backend",
"command": "../${config:python.pythonPath}",
"args": ["app.py"],
"args": [
"app.py"
],
"options": {
"cwd": "${workspaceFolder}/mealie/"
},
@ -34,9 +40,9 @@
"presentation": {
"reveal": "always",
"group": "groupA"
}
},
"problemMatcher": []
},
{
"label": "Dev: Start local Frontend",
"command": "npm run serve",
@ -47,7 +53,8 @@
"presentation": {
"reveal": "always",
"group": "groupA"
}
},
"problemMatcher": []
}
]
}

View file

@ -37,4 +37,5 @@ COPY --from=build-stage /app/dist /app/dist
VOLUME [ "/app/data/" ]
RUN chmod +x /app/run.sh
CMD /app/run.sh
CMD /app/run.sh