mirror of
https://github.com/boolean-maybe/tiki
synced 2026-04-21 13:37:20 +00:00
1.5 KiB
1.5 KiB
Installation
Mac OS and Linux
curl -fsSL https://raw.githubusercontent.com/boolean-maybe/tiki/main/install.sh | bash
Mac OS via brew
brew install boolean-maybe/tap/tiki
Windows
# Windows PowerShell
iwr -useb https://raw.githubusercontent.com/boolean-maybe/tiki/main/install.ps1 | iex
Manual install
Download the latest distribution from the releases page
and simply copy the tiki executable to any location and make it available via PATH
Build from source
GOBIN=$HOME/.local/bin go install github.com/boolean-maybe/tiki@latest
Verify installation
tiki --version
Initialize a project
cd /path/to/your/git/repo
tiki init
Terminal Requirements
tiki CLI tool works best with modern terminal emulators that support:
- 256-color or TrueColor (24-bit) support
- UTF-8 encoding for proper character display
- Standard ANSI escape sequences
Recommended Terminals
- macOS: iTerm2, kitty, Ghostty, Alacritty, or default Terminal.app
- Linux: kitty, Ghostty, Alacritty, GNOME Terminal, Konsole, or any xterm-256color compatible terminal
- Windows: Windows Terminal, ConEmu, or Alacritty
Terminal Configuration
For best results, ensure your terminal is set to:
- TERM environment variable:
xterm-256coloror better (e.g.,xterm-truecolor) - UTF-8 encoding enabled
If colors don't display correctly, try setting:
export TERM=xterm-256color