[READ-ONLY] Mirror of https://github.com/mrgnw/zenfo.co.
1port := "3470"
2
3install:
4 pnpm install
5
6dev: install
7 pnpm dev
8
9build: install
10 pnpm build
11
12check: install
13 pnpm check
14
15preview: install
16 pnpm preview
17
18depth dir:
19 uv run scripts/generate-depth.py {{dir}}
20
21tunnel:
22 cloudflared tunnel --url http://localhost:{{port}}
23
24deploy: build
25 pnpm run deploy
26
27ci: check build