-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Julian Dai
authored and
Julian Dai
committed
Aug 19, 2022
1 parent
db6b3e0
commit 3d89903
Showing
26 changed files
with
1,558 additions
and
684 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"projectName": "rems", | ||
"version": "3.1", | ||
"frontend": "javascript", | ||
"javascript": { | ||
"framework": "react", | ||
"config": { | ||
"SourceDir": "src", | ||
"DistributionDir": "build", | ||
"BuildCommand": "npm run-script build", | ||
"StartCommand": "npm run-script start" | ||
} | ||
}, | ||
"providers": [ | ||
"awscloudformation" | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Getting Started with Amplify CLI | ||
This directory was generated by [Amplify CLI](https://docs.amplify.aws/cli). | ||
|
||
Helpful resources: | ||
- Amplify documentation: https://docs.amplify.aws | ||
- Amplify CLI documentation: https://docs.amplify.aws/cli | ||
- More details on this folder & generated files: https://docs.amplify.aws/cli/reference/files | ||
- Join Amplify's community: https://amplify.aws/community/ |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"authSelections": "userPoolOnly", | ||
"resourceName": "rems3a23976c", | ||
"serviceType": "imported", | ||
"region": "us-east-1", | ||
"authProvidersUserPool": [], | ||
"requiredAttributes": [ | ||
"email" | ||
], | ||
"passwordPolicyMinLength": 8, | ||
"passwordPolicyCharacters": [ | ||
"Requires Lowercase", | ||
"Requires Uppercase", | ||
"Requires Numbers", | ||
"Requires Symbols" | ||
], | ||
"mfaConfiguration": "ON", | ||
"autoVerifiedAttributes": [ | ||
"email" | ||
], | ||
"mfaTypes": [ | ||
"SMS Text Message" | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"auth": { | ||
"rems3a23976c": { | ||
"service": "Cognito", | ||
"serviceType": "imported", | ||
"providerPlugin": "awscloudformation", | ||
"dependsOn": [], | ||
"customAuth": false | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[ | ||
{ | ||
"Key": "user:Stack", | ||
"Value": "{project-env}" | ||
}, | ||
{ | ||
"Key": "user:Application", | ||
"Value": "{project-name}" | ||
} | ||
] |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
export type AmplifyDependentResourcesAttributes = {} |
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{ | ||
"features": { | ||
"graphqltransformer": { | ||
"addmissingownerfields": true, | ||
"improvepluralization": false, | ||
"validatetypenamereservedwords": true, | ||
"useexperimentalpipelinedtransformer": true, | ||
"enableiterativegsiupdates": true, | ||
"secondarykeyasgsi": true, | ||
"skipoverridemutationinputtypes": true, | ||
"transformerversion": 2, | ||
"suppressschemamigrationprompt": true, | ||
"securityenhancementnotification": false, | ||
"showfieldauthnotification": false | ||
}, | ||
"frontend-ios": { | ||
"enablexcodeintegration": true | ||
}, | ||
"auth": { | ||
"enablecaseinsensitivity": true, | ||
"useinclusiveterminology": true, | ||
"breakcirculardependency": true, | ||
"forcealiasattributes": false, | ||
"useenabledmfas": true | ||
}, | ||
"codegen": { | ||
"useappsyncmodelgenplugin": true, | ||
"usedocsgeneratorplugin": true, | ||
"usetypesgeneratorplugin": true, | ||
"cleangeneratedmodelsdirectory": true, | ||
"retaincasestyle": true, | ||
"addtimestampfields": true, | ||
"handlelistnullabilitytransparently": true, | ||
"emitauthprovider": true, | ||
"generateindexrules": true, | ||
"enabledartnullsafety": true | ||
}, | ||
"appsync": { | ||
"generategraphqlpermissions": true | ||
}, | ||
"latestregionsupport": { | ||
"pinpoint": 1, | ||
"translate": 1, | ||
"transcribe": 1, | ||
"rekognition": 1, | ||
"textract": 1, | ||
"comprehend": 1 | ||
}, | ||
"project": { | ||
"overrides": true | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Command Hooks | ||
|
||
Command hooks can be used to run custom scripts upon Amplify CLI lifecycle events like pre-push, post-add-function, etc. | ||
|
||
To get started, add your script files based on the expected naming convention in this directory. | ||
|
||
Learn more about the script file naming convention, hook parameters, third party dependencies, and advanced configurations at https://docs.amplify.aws/cli/usage/command-hooks |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"dev": { | ||
"awscloudformation": { | ||
"AuthRoleName": "amplify-rems-dev-181817-authRole", | ||
"UnauthRoleArn": "arn:aws:iam::623243298160:role/amplify-rems-dev-181817-unauthRole", | ||
"AuthRoleArn": "arn:aws:iam::623243298160:role/amplify-rems-dev-181817-authRole", | ||
"Region": "us-east-1", | ||
"DeploymentBucketName": "amplify-rems-dev-181817-deployment", | ||
"UnauthRoleName": "amplify-rems-dev-181817-unauthRole", | ||
"StackName": "amplify-rems-dev-181817", | ||
"StackId": "arn:aws:cloudformation:us-east-1:623243298160:stack/amplify-rems-dev-181817/a99a3940-1f43-11ed-8229-0a9880a94f7b", | ||
"AmplifyAppId": "d2wnv8esa7gkoh" | ||
}, | ||
"categories": { | ||
"auth": { | ||
"rems3a23976c": { | ||
"userPoolId": "us-east-1_XNm6AS9VI", | ||
"userPoolName": "REMS", | ||
"webClientId": "2olqcmpburn64f72p4d68bl5ll", | ||
"nativeClientId": "2olqcmpburn64f72p4d68bl5ll" | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.