-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
807: Authentication for UI in production mode (#851)
* Reinstate auth stack in CDK app, but without Azure as IdP * Add login to UI in prod mode only * Add authentication header to UI requests in prod mode only
- Loading branch information
1 parent
1dcc954
commit 36c6a48
Showing
18 changed files
with
6,130 additions
and
2,056 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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"availability-zones:account=600982866784:region=eu-west-1": [ | ||
"eu-west-1a", | ||
"eu-west-1b", | ||
"eu-west-1c" | ||
"availability-zones:account=992382568770:region=eu-north-1": [ | ||
"eu-north-1a", | ||
"eu-north-1b", | ||
"eu-north-1c" | ||
] | ||
} |
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
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
VITE_BACKEND_URL=http://localhost:3000/api | ||
VITE_COGNITO_REDIRECT_URL=http://localhost:3000/ |
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 |
---|---|---|
@@ -1,4 +1,7 @@ | ||
module.exports = { | ||
extends: ['stylelint-config-standard', 'stylelint-config-hudochenkov/order'], | ||
ignoreFiles: ['node_modules/**/*', 'dist/**/*'], | ||
rules: { | ||
'selector-class-pattern': null, | ||
}, | ||
}; |
Oops, something went wrong.