To prepare your repo for import, simply clone the repo and install any package dependencies required.

1. Clone your code repo

We'll run the CLI against a local copy of our code repo. If you don't already have a local copy or your code, clone the repo using your usual source control.

For example, using git:

git clone <https://github.com/auth0/cosmos.git>

2. Install your package dependencies

The CLI will bundle your code for deployment, so we need to install your package dependencies. Usually this is done using npm or yarn, but use whatever your normal approach is to install the npm dependencies for your repo.

For example, using yarn:

yarn

Next: Installing and Initializing the CLI