This commit is contained in:
Rogelio
2025-10-13 18:16:25 +00:00
parent 739f087cef
commit 325f1ef439
415 changed files with 46870 additions and 0 deletions

20
.mise/config.toml Normal file
View File

@@ -0,0 +1,20 @@
[tools]
node = "22"
pnpm = "latest"
python = "3.12"
uv = "latest"
[tasks."container:build"]
description = "Build the container for a project"
run = "docker buildx bake --no-cache"
[tasks."secrets:list"]
description = "List secrets from Vault"
run = """vault kv get -mount="secret" -address=https://vault.ia-innovacion.work -format=json "banortegpt"| jq '.["data"]["data"]'"""
silent = true
[tasks.setup]
run = """
pnpm install && pnpm build
uv sync --all-packages
"""