Skip to content

Developing Scale

Brett Chalupa edited this page Jan 26, 2023 · 1 revision

Because the Scale repo tries to not contain much extra stuff aside from SCALE_DOCS.md, this document outlines some helpful stuff to set up and use when working on Scale.

Run Tests Before Git Commit

This is important to ensure the test suite passes and that functionality isn't regressing. Put this in .git/hooks/pre-commit:

#!/bin/sh
./run_tests
Clone this wiki locally