-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathmise.toml
More file actions
33 lines (28 loc) · 822 Bytes
/
mise.toml
File metadata and controls
33 lines (28 loc) · 822 Bytes
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
[env]
_.file = ".env"
[tools]
# NOTE: updating these versions does *NOT* change what Vercel uses during deploy / preview
# make sure to update `engines` in package.json as well
node = "22.16.0"
pnpm = "10.13.1"
python = "3.13.12"
uv = "0.7"
[tasks."indexing:run"]
description = "Run the Glean indexing script"
dir = "scripts/indexing"
run = "uv run main.py"
[tasks."indexing:dry-run"]
description = "Dry run: fetch and transform data without uploading (outputs JSON)"
dir = "scripts/indexing"
run = "DRY_RUN=true uv run main.py"
[tasks."indexing:sync"]
description = "Sync indexing dependencies"
dir = "scripts/indexing"
run = "uv sync"
[tasks."indexing:setup"]
description = "Initial setup: sync deps and install playwright browsers"
dir = "scripts/indexing"
run = """
uv sync
uv run playwright install chromium
"""