Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 719 Bytes

File metadata and controls

38 lines (26 loc) · 719 Bytes

Contributing to Berget CLI

Berget CLI is open source. Contributions are welcome!

Development Setup

Clone the repository and install dependencies:

git clone https://github.com/berget-ai/cli.git
cd cli
npm install

Testing Locally

Use the start script to test the CLI locally with the --local flag:

npm start -- <command> [options]

For example:

# Test login
npm start -- auth login

# Test whoami
npm start -- auth whoami

# Test with debug output
npm start -- auth whoami --debug