-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmise.toml.hbs
More file actions
59 lines (55 loc) · 1.85 KB
/
Copy pathmise.toml.hbs
File metadata and controls
59 lines (55 loc) · 1.85 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
56
57
58
59
# {{ warning }}
[settings]
python.uv_venv_auto = false
lockfile = true
[tools]
gcloud = "latest"
"github:cli/cli" = "latest"
jq = "latest"
node = "22.14.0"
python = "3.13.0"
rust = "latest"
uv = "latest"
pnpm = "latest"
postgres = "18.3"
terraform = "latest"
ruby = "3.2.10"
java = "openjdk-17"
[env]
UV_PROJECT_ENVIRONMENT = "\{{ config_root }}/.build-cache/venv"
RUBY_CONFIGURE_OPTS = "--with-libyaml-dir=/opt/homebrew/opt/libyaml --with-openssl-dir=/opt/homebrew/opt/openssl@3"
# mise-postgres: skip ICU (no pkg-config/icu4c needed); fine for local dev.
POSTGRES_EXTRA_CONFIGURE_OPTIONS = "--without-icu"
_.python.venv = { path = ".build-cache/venv", create = true }
[task_config]
includes = [
"tasks",
"root.mise.toml",
"docs/docs.mise.toml",
"infra/package.mise.toml",
"src/alib/py/framework/package.mise.toml",
"src/core/package.mise.toml",
"src/cli/package.mise.toml",
"src/webapi/gc-do-all/package.mise.toml",
"src/webapi/clear-abandoned-users-do-all/package.mise.toml",
"src/webapi/sync-google-user-data-do-all/package.mise.toml",
"src/webapi/gen-do-all/package.mise.toml",
"src/webapi/schedule-external-sync-do-all/package.mise.toml",
"src/webapi/search-index-backfill-do-all/package.mise.toml",
"src/webapi/crm-backfill-do-all/package.mise.toml",
"src/webapi/search-mutation-log-drain-do-all/package.mise.toml",
"src/webapi/search-mutation-requeue-do-all/package.mise.toml",
"src/webapi/stats-do-all/package.mise.toml",
"src/webapi/srv/package.mise.toml",
"src/api/package.mise.toml",
"src/mcp/package.mise.toml",
"src/docs/package.mise.toml",
"src/webui/package.mise.toml",
"src/published/package.mise.toml",
"src/desktop/package.mise.toml",
"src/mobile/package.mise.toml",
"itests/package.mise.toml",
{{#each packageMisePaths as |path|}}
"{{path}}",
{{/each}}
]