feat: add interactivity to quickstarts#518
Merged
darrickyong merged 13 commits intomainfrom Feb 5, 2026
Merged
Conversation
darrickyong
commented
Jan 28, 2026
| this.resourceServerStore = new ResourceServerStore(this); | ||
| this.variableStore = new VariableStore(this); | ||
| this.featureFlagStore = new FeatureFlagStore(this); | ||
| this.config = config; |
Contributor
Author
There was a problem hiding this comment.
Adding config to rootStore in order to leverage apiBaseUrl as config.
darrickyong
commented
Jan 28, 2026
|
|
||
| if (window.rootStore) { | ||
| // If this create component is re-mounted, clear any selected client | ||
| window.rootStore.clientStore.setSelectedClient(null); |
Contributor
Author
There was a problem hiding this comment.
After an app creation, navigating away to another framework will reset the clientId
7c0156f to
b936924
Compare
b936924 to
e4d9ab0
Compare
brth31
requested changes
Jan 29, 2026
Comment on lines
681
to
682
| AUTH0_CLIENT_SECRET=YOUR_AUTH0_APP_CLIENT_SECRET | ||
| AUTH0_SECRET=YOUR_LONG_RANDOM_SECRET_HERE |
Contributor
There was a problem hiding this comment.
@darrickyong We should auto-fill both AUTH0_CLIENT_SECRET and AUTH0_SECRET values.
- AUTH0_CLIENT_SECRET can be obtained from the respective app details on the tenant
- AUTH0_SECRET is a random string that the component should auto-generate on the fly. eg:
openssl rand -hex 32
Contributor
There was a problem hiding this comment.
@brth31 given the internal conversation that we had, we will not include 'secret' values yet.
ℹ️ We'll work together to scope out work to create this UI/UX for our customers seperately as an n+1 to this work.
74b6234 to
153eb16
Compare
2215ac8 to
f918f32
Compare
brth31
approved these changes
Feb 5, 2026
mikemimik
approved these changes
Feb 5, 2026
avanscoy
approved these changes
Feb 5, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
By submitting a PR to this repository, you agree to the terms within the Auth0 Code of Conduct. Please see the contributing guidelines for how to create and submit a high-quality PR for this repo.
Description
This PR adds interactivity to quickstarts for certain frameworks:
References
Testing
Testing was performed locally with
manage.localto confirm that applications were properly created with the arguments provided.Pressing the
Copybutton copies the unmaskedclient_secretTested this also by updating the branch in Mintifly and observing the change at https://tus.auth0.com/docs/quickstart/webapp/nextjs and https://manage.tus.auth0.com/
Checklist