Skip to content

Commit 6ce20d7

Browse files
Eric RobyEric Roby
authored andcommitted
init
1 parent f48b178 commit 6ce20d7

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,6 @@ jspm_packages/
330330
.yarn-integrity
331331

332332
# dotenv environment variables file
333-
.env
334333
.env.test
335334

336335
# parcel-bundler cache (https://parceljs.org/)
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
SSL_CRT_FILE=ssl-localhost/localhost.crt
2+
SSL_KEY_FILE=ssl-localhost/localhost.key
3+
4+
REACT_APP_API='https://localhost:8443/api'

source-code/fullstack-library-app-https/03-frontend/react-library/src/lib/oktaConfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export const oktaConfig = {
22
clientId: '<CLIENTID HERE>',
33
issuer: 'https://dev-<DEV ID>.okta.com/oauth2/default',
4-
redirectUri: 'http://localhost:3000/login/callback',
4+
redirectUri: 'https://localhost:3000/login/callback',
55
scopes: ['openid', 'profile', 'email'],
66
pkce: true,
77
disableHttpsCheck: true,

0 commit comments

Comments
 (0)