Skip to content

Commit 1f13a69

Browse files
committed
add quickstart
1 parent 4b20fe8 commit 1f13a69

17 files changed

+178
-19
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.html
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Configure the Auth0 Angular SDK by providing the Auth0 provider in your application config.
2+
3+
Required configuration:
4+
- `domain`: your Auth0 tenant's domain
5+
- `clientId`: Your Auth0 Application's Client ID
6+
- `authorizationParams.redirect_uri`: the URL to redirect back from Auth0 after authenticating.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Install the dependencies and link the sample app to the current Auth0 Tenant and Application using the following command.

quickstart/markdown/get-app.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Alternatively, you can download the sample app as a ZIP file from [here](%DOWNLOAD_URL%).
2+
3+
Extract it and navigate to the project directory in your terminal.

quickstart/markdown/git-clone.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Clone the sample app from GitHub or download it directly.

quickstart/markdown/install-sdk.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Install the Auth0 Angular SDK by running the following command in your project root.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This starts the Angular development server on port %PORT% by default.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Then use the service in the component template to render the user interface.

quickstart/markdown/try-steps.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
1. Open the sample application at [%APP_SCHEME%://%APP_DOMAIN%:%PORT%](%APP_SCHEME%://%APP_DOMAIN%:%PORT%).
2+
1. Click **Sign Up** to create a new user in your Auth0 tenant.
3+
This will redirect you to the Auth0 Universal Login page to complete the signup process.
4+
1. Once back in the app, view the details of the newly created user in the **User Profile** section.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Use Angular's dependency injection to access the `AuthService` and its observables to manage authentication state in your components.

0 commit comments

Comments
 (0)