little-hesinde/.vscode/tasks.json
Sebastian Hugentobler 033a3e2c72
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 3m16s
add direnv
2025-04-29 09:53:49 +02:00

18 lines
289 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Run",
"type": "shell",
"command": "cargo",
"args": ["run", "--", "-l", "[::]:3000", "--", "~/Documents/Library/"],
"options": {
"env": {
"RUST_LOG": "debug"
}
}
}
]
}