Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/xbubbo/auth0-cli

Mass list, add, and delete users for Auth0.
https://github.com/xbubbo/auth0-cli

auth0

Last synced: 21 days ago
JSON representation

Mass list, add, and delete users for Auth0.

Awesome Lists containing this project

README

        

# Auth0 CLI Setup Guide

## Prerequisites
- Active Auth0 account
- Configured Auth0 application

## Steps

### Step 1: Copy Environment File
#### For Linux/Mac:
```bash
cp .env.example .env
```

#### For Windows (PowerShell):
```powershell
Copy-Item .env.example .env
```

### Step 2: Retrieve Auth0 Domain
1. Log in to the [Auth0 Dashboard](https://manage.auth0.com/dashboard/).
2. Go to **Applications > Applications**.
3. Open your application's **Settings**.
4. Find the **Domain** in the **Basic Information** section.
5. Copy the **Domain** value and add it to your `.env` file as:
```
DOMAIN=
```

### Step 3: Retrieve Client ID
1. In the **Settings** section, locate the **Client ID** below the **Domain**.
2. Copy the **Client ID** and add it to your `.env` file as:
```
CLIENT_ID=
```

### Step 4: Retrieve Client Secret
1. In the **Settings** section, find the **Client Secret** below the **Client ID**.
2. Copy the **Client Secret** and add it to your `.env` file as:
```
SECRET=
```

### Step 5: Retrieve Database Connection Name
1. Go to **Authentication > Database** in the Auth0 Dashboard.
2. Locate and copy the **Database Connection Name**.
3. Add it to your `.env` file as:
```
CONNECTION=
```