aboutsummaryrefslogtreecommitdiff
path: root/bin/build
blob: 907415ad920730f5d31651c11d631b8488635fce (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/env bash
set -euo pipefail

# frontend
(cd frontend; make clean build)

# backend
(cd backend; zig build --release=fast)