We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0bc286 commit 9660e51Copy full SHA for 9660e51
course-04/project/c4-final-project-starter-code/client/src/config.ts
@@ -1,8 +1,10 @@
1
+// TODO: Once your application is deployed, copy an API id here so that the frontend could interact with it
2
const apiId = '...'
3
export const apiEndpoint = `https://${apiId}.execute-api.us-east-1.amazonaws.com/dev`
4
5
export const authConfig = {
- domain: '...',
6
- clientId: '...',
+ // TODO: Create an Auth0 application and copy values from it into this map
7
+ domain: '...', // Auth0 domain
8
+ clientId: '...', // Auth0 client id
9
callbackUrl: 'http://localhost:3000/callback'
10
}
0 commit comments