Files
llmx/codex-rs/justfile

16 lines
255 B
Makefile
Raw Normal View History

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