Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 479 Bytes

BUILDING.md

File metadata and controls

22 lines (17 loc) · 479 Bytes

Working with the Core thcon Binary

This project uses a pretty standard Go build pattern:

# Compile
go build

# Test
go test ./...

# Lint
# Install staticcheck: https://staticcheck.io/docs/getting-started/
staticcheck

Unfortunately, cross-compilation doesn't work very well due to the native dependencies involved.

Building documentation

  1. Install pnpm
  2. pnpm -C docs/ start
  3. Open https://localhost:8080 in your browser