diff --git a/README.md b/README.md index c232631..4ea37db 100644 --- a/README.md +++ b/README.md @@ -18,20 +18,40 @@ A GitHub CLI-inspired command-line interface for ClickUp. ## Installation -### Homebrew (macOS/Linux) +### Quick Install + +#### macOS / Linux ```bash -# Coming soon -brew install clickup-cli +curl -sSL https://raw.githubusercontent.com/timimsms/cu/main/scripts/install.sh | bash +``` + +#### Windows (PowerShell) +```powershell +irm https://raw.githubusercontent.com/timimsms/cu/main/scripts/install.ps1 | iex +``` + +### Package Managers + +#### Homebrew (macOS/Linux) +```bash +brew install timimsms/clickup/clickup-cli ``` -### npm +#### npm ```bash # Coming soon npm install -g @clickup/cli ``` -### Direct Download -Download the latest release from the [releases page](https://github.com/tim/cu/releases). +#### Docker +```bash +docker run -it clickup/cli:latest --help +``` + +### Manual Download +Download the latest binary for your platform from the [releases page](https://github.com/timimsms/cu/releases/latest). + +For more installation options and troubleshooting, visit our [installation guide](https://timimsms.github.io/cu/install/). ## Quick Start diff --git a/docs/install/index.html b/docs/install/index.html new file mode 100644 index 0000000..5db2e20 --- /dev/null +++ b/docs/install/index.html @@ -0,0 +1,332 @@ + + +
+ + +The ClickUp CLI (cu) is a command-line tool for managing ClickUp tasks and projects.
Run this command in your terminal:
+curl -sSL https://raw.githubusercontent.com/timimsms/cu/main/scripts/install.sh | bash
+ If you prefer wget:
+wget -qO- https://raw.githubusercontent.com/timimsms/cu/main/scripts/install.sh | bash
+ ~/.local/bin by default and add it to your PATH if needed.
+ Run this command in PowerShell:
+irm https://raw.githubusercontent.com/timimsms/cu/main/scripts/install.ps1 | iex
+ Or download and run the script:
+Invoke-WebRequest -Uri https://raw.githubusercontent.com/timimsms/cu/main/scripts/install.ps1 -OutFile install.ps1
./install.ps1
+ Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
+ brew install timimsms/clickup/clickup-cli
+ docker run -it clickup/cli:latest --help
+ Download the latest binary for your platform from the releases page.
+ +git clone https://github.com/timimsms/cu.git
cd cu
go build -o cu ./cmd/cu
+ After installation, authenticate with your ClickUp account:
+cu auth login
+ Then you can start using the CLI:
+cu task list
cu task create
cu --help
+