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