gw/taskfile.yml
2024-12-26 11:00:16 +00:00

19 lines
No EOL
344 B
YAML

version: '3'
tasks:
build-backend:
cmds:
- rm gw
- nimble c -d:usestd src/gw.nim -o:gw
build-frontend:
dir: ./web
cmds:
- 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