-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Start writing some language and tooling documentation.
Part of #12.
- Loading branch information
Showing
11 changed files
with
183 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# CLI Driver | ||
|
||
## celerity check | ||
|
||
```text | ||
celerity check [directory] | ||
``` | ||
|
||
## celerity format | ||
|
||
```text | ||
celerity format [directory] [options...] | ||
``` | ||
|
||
| Option | Description | | ||
| - | - | | ||
| `--fix` | Enable automatic fixing. | | ||
|
||
## celerity info | ||
|
||
```text | ||
celerity info | ||
``` | ||
|
||
## celerity repl | ||
|
||
```text | ||
celerity repl [directory] | ||
``` | ||
|
||
## celerity run | ||
|
||
```text | ||
celerity run [directory] [arguments...] | ||
``` | ||
|
||
## celerity serve | ||
|
||
```text | ||
celerity serve [directory] [options...] | ||
``` | ||
|
||
| Option | Description | | ||
| - | - | | ||
| `--level` | Set log level. | | ||
|
||
## celerity test | ||
|
||
```text | ||
celerity test [directory] | ||
``` |