Skip to main content
Quick CLI setup for Ollie Shop development. Install, authenticate, and start building in under 2 minutes.

Install

npm install -g @ollie-shop/cli
ollieshop --version
Should show version number (e.g., 2.1.4)

Authenticate

1

Login

ollieshop login
Opens browser for OAuth authentication
2

Choose Provider

GitHub

Best for teams with existing GitHub workflows

Google

Quick single sign-on for business users

Email

Secure email-based authentication
Ready! CLI is installed and authenticated. Start with the Developer Quickstart to build your first component.
Authentication tokens are stored securely in ~/.ollie-shop/credentials.json

Troubleshooting

Permission Denied

Problem: npm install -g fails with permission errorsSolution:
sudo npm install -g @ollie-shop/cli
Or use a Node version manager like nvm

Command Not Found

Problem: ollieshop command not recognizedSolution: Restart terminal or check PATH:
echo $PATH | grep npm

Login Fails

Problem: Browser doesn’t open or authentication failsSolution: Try manual authentication:
ollieshop login --manual

Node Version

Problem: CLI requires newer Node.js versionSolution: Update Node.js to 18+ or use nvm:
node --version  # Should be 18.0.0+