mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-17 19:09:11 +03:00
93 lines
2.1 KiB
JSON
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"
|
|
}
|
|
]
|
|
}
|