Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

### System requirements

| Requirement | Details |
| --------------------------- | --------------------------------------------------------------- |
| Operating systems | macOS 12+, Ubuntu 20.04+/Debian 10+, or Windows 11 **via WSL2** |
| Git (optional, recommended) | 2.23+ for built-in PR helpers |
| RAM | 4-GB minimum (8-GB recommended) |
| Requirement | Details |
| --------------------------- | ----------------------------------------------------------------- |
| Operating systems | macOS 12+, Ubuntu 20.04+/Debian 10+, or Windows 11 (Experimental) |
| Git (optional, recommended) | 2.23+ for built-in PR helpers |
| RAM | 4-GB minimum (8-GB recommended) |

### DotSlash

Expand Down
18 changes: 9 additions & 9 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set working-directory := "codex-rs"
set positional-arguments
set windows-shell := ["powershell.exe", "-NoProfile", "-Command"]

# Display help
help:
Expand All @@ -8,30 +8,30 @@ help:
# `codex`
alias c := codex
codex *args:
cargo run --bin codex -- "$@"
cargo run --bin codex -- {{args}}

# `codex exec`
exec *args:
cargo run --bin codex -- exec "$@"
cargo run --bin codex -- exec {{args}}

# Run the CLI version of the file-search crate.
file-search *args:
cargo run --bin codex-file-search -- "$@"
cargo run --bin codex-file-search -- {{args}}

# Build the CLI and run the app-server test client
app-server-test-client *args:
cargo build -p codex-cli
cargo run -p codex-app-server-test-client -- --codex-bin ./target/debug/codex "$@"
cargo run -p codex-app-server-test-client -- --codex-bin ./target/debug/codex {{args}}

# format code
fmt:
cargo fmt -- --config imports_granularity=Item

fix *args:
cargo clippy --fix --all-features --tests --allow-dirty "$@"
cargo clippy --fix --all-features --tests --allow-dirty {{args}}

clippy:
cargo clippy --all-features --tests "$@"
clippy *args:
cargo clippy --all-features --tests {{args}}

install:
rustup show active-toolchain
Expand All @@ -46,4 +46,4 @@ test:

# Run the MCP server
mcp-server-run *args:
cargo run -p codex-mcp-server -- "$@"
cargo run -p codex-mcp-server -- {{args}}