- Active Auth0 account
- Configured Auth0 application
cp .env.example .env
Copy-Item .env.example .env
- Log in to the Auth0 Dashboard.
- Go to Applications > Applications.
- Open your application's Settings.
- Find the Domain in the Basic Information section.
- Copy the Domain value and add it to your
.env
file as:DOMAIN=<your-domain>
- In the Settings section, locate the Client ID below the Domain.
- Copy the Client ID and add it to your
.env
file as:CLIENT_ID=<your-client-id>
- In the Settings section, find the Client Secret below the Client ID.
- Copy the Client Secret and add it to your
.env
file as:SECRET=<your-client-secret>
- Go to Authentication > Database in the Auth0 Dashboard.
- Locate and copy the Database Connection Name.
- Add it to your
.env
file as:CONNECTION=<your-db-connection-name>