-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #208 from Web3Auth/feat/auth0-rwa
added rwa application support in auth0
- Loading branch information
Showing
43 changed files
with
85,669 additions
and
27,407 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"recommendations": ["esbenp.prettier-vscode", "streetsidesoftware.code-spell-checker", "dbaeumer.vscode-eslint"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
AUTH_URL = https://test-tor.us.auth0.com/oauth/token | ||
PORT = 3001 | ||
CLIENT_ID = M7Gutk7odQu3T3VABOq5oEENmZuJFRYt | ||
CLIENT_SECRET = ***** | ||
REDIRECT_URI = http://localhost:3001 | ||
FRONT_ENDPOINT = http://localhost:3000/rwa?token= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"es2021": true | ||
}, | ||
"extends": "eslint:recommended", | ||
"parserOptions": { | ||
"ecmaVersion": "latest", | ||
"sourceType": "module" | ||
}, | ||
"rules": { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Express Server for auth0 RWA example | ||
|
||
## Running This Sample Locally | ||
|
||
1. Install the dependencies with npm: | ||
|
||
```bash | ||
npm install | ||
``` | ||
|
||
2. Rename `.env.example` to `.env` and replace or check the values. | ||
|
||
3. Run server | ||
|
||
```bash | ||
node server.js or nodemon server.js | ||
``` |
Oops, something went wrong.