@@ -68,7 +68,7 @@ This guide helps you diagnose and fix common issues with Rust TUI Coder.
6868 git clone https://github.com/yourusername/rust_tui_coder.git
6969 cd rust_tui_coder
7070 cargo build --release
71- ./target/release/rust_tui_coder
71+ ./target/release/rct
7272 ```
7373
7474---
@@ -250,7 +250,7 @@ curl -I https://api.openai.com/v1/models
2502504. **Use proxy (if needed)**
251251 ```bash
252252 export HTTPS_PROXY=http://proxy.company.com:8080
253- rust_tui_coder
253+ rct
254254 ```
255255
256256---
4264261. ** Set TERM variable**
427427 ` ` ` bash
428428 export TERM=xterm-256color
429- rust_tui_coder
429+ rct
430430 ` ` `
431431
4324322. ** Use compatible terminal**
@@ -573,7 +573,7 @@ top | grep rust_tui_coder
5735732. ** Check logs**
574574 ` ` ` bash
575575 # Run with backtrace
576- RUST_BACKTRACE=1 rust_tui_coder
576+ RUST_BACKTRACE=1 rct
577577 ` ` `
578578
5795793. ** Report bug**
@@ -667,10 +667,10 @@ Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
667667
668668` ` ` bash
669669# Run with verbose output
670- RUST_LOG=debug rust_tui_coder
670+ RUST_LOG=debug rct
671671
672672# Or with backtrace
673- RUST_BACKTRACE=full rust_tui_coder
673+ RUST_BACKTRACE=full rct
674674` ` `
675675
676676# ## Test API Connection Manually
@@ -699,8 +699,8 @@ curl https://api.anthropic.com/v1/messages \
699699cargo install --list | grep rust_tui_coder
700700
701701# Verify binary
702- which rust_tui_coder
703- rust_tui_coder --version # If version flag is implemented
702+ which rct
703+ rct --version # If version flag is implemented
704704` ` `
705705
706706---
@@ -743,7 +743,7 @@ If you're still experiencing issues:
743743** Solution:** Application runs in the directory where you launch it
744744` ` ` bash
745745cd /path/to/your/project
746- rust_tui_coder
746+ rct
747747` ` `
748748
749749---
0 commit comments