Files
llmx/codex-rs/justfile
Michael Bolin c432d9ef81 chore: remove the REPL crate/subcommand (#754)
@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.
2025-04-30 10:15:50 -07:00

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}}