Installation
npm
npm install -g @shipi/cli
yarn
yarn global add @shipi/cli
pnpm
pnpm add -g @shipi/cli
bun
bun add -g @shipi/cli
Verify installation
shipi --version
Authentication
Shipi requires an API key. Get one at the dashboard.
Set your API key:
export SHIPI_API_KEY=your-api-key
Or add it to your shell profile (~/.bashrc, ~/.zshrc, etc.):
echo 'export SHIPI_API_KEY=your-api-key' >> ~/.zshrc
You can also use a .env file in your project:
SHIPI_API_KEY=your-api-key