Files
authentik/.vscode/tasks.json
T
2025-03-19 16:29:18 +00:00

93 lines
2.1 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "authentik/core: make",
"command": "uv",
"args": [
"run",
"make",
"lint-fix",
"lint"
],
"presentation": {
"panel": "new"
},
"group": "test"
},
{
"label": "authentik/core: run",
"command": "uv",
"args": [
"run",
"ak",
"server"
],
"group": "build",
"presentation": {
"panel": "dedicated",
"group": "running"
}
},
{
"label": "authentik/web: make",
"command": "make",
"args": [
"web"
],
"group": "build"
},
{
"label": "authentik/web: watch",
"command": "make",
"args": [
"web-watch"
],
"group": "build",
"presentation": {
"panel": "dedicated",
"group": "running"
}
},
{
"label": "authentik: install",
"command": "make",
"args": [
"install",
"-j4"
],
"group": "build"
},
{
"label": "authentik/website: make",
"command": "make",
"args": [
"website"
],
"group": "build"
},
{
"label": "authentik/website: watch",
"command": "make",
"args": [
"website-watch"
],
"group": "build",
"presentation": {
"panel": "dedicated",
"group": "running"
}
},
{
"label": "authentik/api: generate",
"command": "uv",
"args": [
"run",
"make",
"gen"
],
"group": "build"
}
]
}