Skip to content

How to build

bitxeno edited this page Jun 25, 2024 · 2 revisions

Build frontend

cd web/static
npm install
npm run dev

Run on development mode

go mod tidy
go mod vendor
go run -tags dev . server

Run on hot reload with go 1.22+

go mod tidy
go mod vendor
go install github.com/air-verse/air@latest
air -c .air.toml
Clone this wiki locally