upload ai slop

This commit is contained in:
2026-02-25 22:49:38 +02:00
parent 49ebbc34fa
commit 0d60f5a83d
146 changed files with 4343 additions and 317 deletions

View File

@@ -78,6 +78,9 @@ commands = [
[env.check]
description = "Run common checks like linter, mypy, etc"
allowlist_externals = [
"npx",
]
dependency_groups = [
"check",
]
@@ -123,6 +126,11 @@ commands = [
"--non-interactive",
"--package", "{[project]name}",
],
[
"npx",
"eslint",
"frontend",
],
]
[env.docs]
@@ -193,6 +201,24 @@ commands = [
],
]
[env.frontend]
description = "Build frontend HTML and JS"
allowlist_externals = [
"npm",
]
change_dir = "frontend"
commands = [
[
"npm",
"install",
],
[
"npm",
"run",
"build",
],
]
[env.html]
description = "Generate html documentation"
dependency_groups = [