Files
baron-safe-app/.vscode/tasks.json
T
kevin 5f7b9a7360
ci / flutter-check (push) Successful in 4s
Initial Baron Safe app scaffold
2026-06-30 15:16:14 +09:00

24 lines
474 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "flutter analyze",
"type": "shell",
"command": "cd app && flutter analyze",
"problemMatcher": []
},
{
"label": "flutter test",
"type": "shell",
"command": "cd app && flutter test",
"problemMatcher": []
},
{
"label": "docker compose up",
"type": "shell",
"command": "docker compose up baron-safe-web",
"problemMatcher": []
}
]
}