slight update to wording.

docs
Nick Brown 2023-08-24 09:27:19 -04:00
parent c90b0a4953
commit 8db885c970
Signed by: bicknrown
GPG Key ID: 47AF495B3DCCE9C3
1 changed files with 5 additions and 5 deletions

View File

@ -14,19 +14,19 @@ You can install Scala and Mill using [Coursier](https://get-coursier.io/docs/cli
## Quick Guide
To clean the project:
`make clean` or `mill clean`
`make clean`, or `mill clean`
To compile the ASTral Catalyst Optimizer:
`make`, `make compile` or `mill astral.catalyst.impl.compile`
`make`, or `make compile`, or `mill astral.catalyst.impl.compile`
To run a basic sanity check on the ASTral Catalyst Optimizer:
`make check` or `mill astral.catalyst.impl.run`
`make check`, or `mill astral.catalyst.impl.run`
To run a subset of the TPCH Benchmark across ASTral, Spark with ASTral's rule set, and Spark:
`make test` or `mill astral.catalyst.impl.runMain com.astraldb.catalyst.TPCHTest`
`make test`, or `mill astral.catalyst.impl.runMain com.astraldb.catalyst.TPCHTest`
*`-w` can be appended to `mill` in any of the above commands to put `mill` into watch mode for incremental changes*
## Language
- [Specification](docs/LANG.md)
- [Specification](docs/LANG.md) (TODO)