Backend/.vscode/tasks.json
zervo 751c841fa2 Tasks, spelling mistakes and API docs
- Configured VSCode tasks.

- Fixed some grammar mistakes.

- Added OpenAPI documentation.
2024-12-06 21:53:09 +01:00

35 lines
No EOL
875 B
JSON

{
"version": "2.0.0",
"type": "shell",
"command": "go",
"cwd": "${workspaceFolder}",
"tasks": [
{
"label": "install",
"args": ["install", "-v", "./..."],
"group": "build",
},
{
"label": "run file",
"args": ["run", "${file}"],
"group": "build",
},
{
"label": "run project",
"args": ["run", "./cmd/stbackend/main.go"],
"group":"build",
"options":{
"env":{
"DATABASE_URL": "test",
"DATABASE_DIALECT": "sqlite",
"JWT_SECRET": "JwTDeVSeCRet15243"
}
},
},
{
"label": "test",
"args": ["test", "-v", "./..."],
"group": "test",
},
],
}