mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-22 14:33:33 -07:00
formatting
This commit is contained in:
parent
3f96961e35
commit
8d974ca2a4
2 changed files with 15 additions and 7 deletions
19
.vscode/tasks.json
vendored
19
.vscode/tasks.json
vendored
|
@ -6,7 +6,9 @@
|
||||||
"command": "./dev/scripts/docker-compose.dev.sh",
|
"command": "./dev/scripts/docker-compose.dev.sh",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"args": [],
|
"args": [],
|
||||||
"problemMatcher": ["$tsc"],
|
"problemMatcher": [
|
||||||
|
"$tsc"
|
||||||
|
],
|
||||||
"presentation": {
|
"presentation": {
|
||||||
"reveal": "always"
|
"reveal": "always"
|
||||||
},
|
},
|
||||||
|
@ -17,7 +19,9 @@
|
||||||
"command": "./dev/scripts/docker-compose.sh",
|
"command": "./dev/scripts/docker-compose.sh",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"args": [],
|
"args": [],
|
||||||
"problemMatcher": ["$tsc"],
|
"problemMatcher": [
|
||||||
|
"$tsc"
|
||||||
|
],
|
||||||
"presentation": {
|
"presentation": {
|
||||||
"reveal": "always"
|
"reveal": "always"
|
||||||
},
|
},
|
||||||
|
@ -26,7 +30,9 @@
|
||||||
{
|
{
|
||||||
"label": "Dev: Start local Backend",
|
"label": "Dev: Start local Backend",
|
||||||
"command": "../${config:python.pythonPath}",
|
"command": "../${config:python.pythonPath}",
|
||||||
"args": ["app.py"],
|
"args": [
|
||||||
|
"app.py"
|
||||||
|
],
|
||||||
"options": {
|
"options": {
|
||||||
"cwd": "${workspaceFolder}/mealie/"
|
"cwd": "${workspaceFolder}/mealie/"
|
||||||
},
|
},
|
||||||
|
@ -34,9 +40,9 @@
|
||||||
"presentation": {
|
"presentation": {
|
||||||
"reveal": "always",
|
"reveal": "always",
|
||||||
"group": "groupA"
|
"group": "groupA"
|
||||||
}
|
},
|
||||||
|
"problemMatcher": []
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"label": "Dev: Start local Frontend",
|
"label": "Dev: Start local Frontend",
|
||||||
"command": "npm run serve",
|
"command": "npm run serve",
|
||||||
|
@ -47,7 +53,8 @@
|
||||||
"presentation": {
|
"presentation": {
|
||||||
"reveal": "always",
|
"reveal": "always",
|
||||||
"group": "groupA"
|
"group": "groupA"
|
||||||
}
|
},
|
||||||
|
"problemMatcher": []
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,4 +37,5 @@ COPY --from=build-stage /app/dist /app/dist
|
||||||
|
|
||||||
VOLUME [ "/app/data/" ]
|
VOLUME [ "/app/data/" ]
|
||||||
RUN chmod +x /app/run.sh
|
RUN chmod +x /app/run.sh
|
||||||
CMD /app/run.sh
|
CMD /app/run.sh
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue