gw/taskfile.yml

19 lines
344 B
YAML
Raw Normal View History

2024-12-25 21:12:11 +00:00
version: '3'
tasks:
2024-12-26 11:00:16 +00:00
build-backend:
2024-12-25 21:12:11 +00:00
cmds:
- rm gw
- nimble c -d:usestd src/gw.nim -o:gw
2024-12-26 11:00:16 +00:00
build-frontend:
dir: ./web
cmds:
2024-12-25 21:12:11 +00:00
- pnpm install
- pnpm run build
dev-backend:
cmds:
- nimble c -d:usestd -r src/gw.nim -o:gw
dev-frontend:
dir: ./web
cmds:
- pnpm run dev