Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/xbubbo/auth0-cli
- Owner: xbubbo
- Created: 2024-10-09T17:09:16.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-01-21T20:19:28.000Z (about 1 month ago)
- Last Synced: 2025-01-21T21:26:26.334Z (about 1 month ago)
- Topics: auth0
- Language: JavaScript
- Homepage: https://auth0.com/docs/api/management/v2
- Size: 43 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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=
```