-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathmise.toml
More file actions
55 lines (45 loc) · 1.16 KB
/
mise.toml
File metadata and controls
55 lines (45 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[tools]
# runtime
"asdf:CrouchingMuppet/asdf-lima" = "2.0.2" # using lima from asdf since the aqua one fails to install in CI
# Python
uv = "0.9.5"
# Node.js
nodejs = "22"
pnpm = "10.15.1"
# Kubernetes
helm = "latest"
kubeconform = "latest"
"ubi:telepresenceio/telepresence" = "latest"
# misc
yq = "latest"
"pipx:toml-cli" = "latest"
fd = "latest"
"ubi:google/addlicense" = "latest"
gum = "latest"
[settings]
experimental = true # for python.uv_venv_auto
python.uv_venv_auto = true
raw = true
node.gpg_verify = false # tends to randomly fail; sha is checked by lockfile
[hooks]
postinstall = [
"{{ mise_bin }} setup",
# npm 11.5+ is needed for trusted publishing
# we can safely remove this after we migrate to node >= 24.5
"npm install -g npm@11.6.3"
]
[env]
UV_PYTHON_PREFERENCE = "only-managed"
[task_config]
includes = [
"./tasks.toml",
"helm/tasks.toml",
"apps/agentstack-cli/tasks.toml",
"apps/agentstack-sdk-py/tasks.toml",
"apps/agentstack-server/tasks.toml",
"apps/agentstack-ui/tasks.toml",
"apps/beeai-web/tasks.toml",
"apps/agentstack-sdk-ts/tasks.toml",
"apps/supergateway/tasks.toml",
"docs/tasks.toml",
]