@oai-ragona and I discussed it, and we feel the REPL crate has served its purpose, so we're going to delete the code and future archaeologists can find it in Git history.
16 lines
255 B
Makefile
16 lines
255 B
Makefile
# Display help
|
|
help:
|
|
just -l
|
|
|
|
# Install the `codex-tui` binary
|
|
install:
|
|
cargo install --path tui
|
|
|
|
# Run the TUI app
|
|
tui *args:
|
|
cargo run --bin codex -- tui {{args}}
|
|
|
|
# Run the Proto app
|
|
proto *args:
|
|
cargo run --bin codex -- proto {{args}}
|