Skip to content

Commit

Permalink
chore: build locally
Browse files Browse the repository at this point in the history
  • Loading branch information
awsluja committed Nov 18, 2024
1 parent aae85a5 commit 0311826
Show file tree
Hide file tree
Showing 7 changed files with 73 additions and 19 deletions.
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@


#amplify-do-not-edit-begin
amplify/\#current-cloud-backend
amplify/.config/local-*
amplify/logs
amplify/mock-data
amplify/mock-api-resources
amplify/backend/amplify-meta.json
amplify/backend/awscloudformation
amplify/backend/.temp
build/
dist/
Expand All @@ -18,4 +20,4 @@ amplify-gradle-config.json
amplifytools.xcconfig
.secret-*
**.sample
#amplify-do-not-edit-end
#amplify-do-not-edit-end
11 changes: 11 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"files.exclude": {
"amplify/.config": true,
"amplify/**/*-parameters.json": true,
"amplify/**/amplify.state": true,
"amplify/**/transform.conf.json": true,
"amplify/#current-cloud-backend": true,
"amplify/backend/amplify-meta.json": true,
"amplify/backend/awscloudformation": true
}
}
10 changes: 5 additions & 5 deletions amplify/.config/project-config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"projectName": "BackendBuildTest",
"providers": [
"awscloudformation"
],
"projectName": "BackendBuildIntegTes",
"version": "3.1",
"frontend": "javascript",
"javascript": {
Expand All @@ -10,8 +13,5 @@
"BuildCommand": "npm run-script build",
"StartCommand": "npm run-script start"
}
},
"providers": [
"awscloudformation"
]
}
}
14 changes: 7 additions & 7 deletions amplify/backend/backend-config.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"api": {
"BackendBuildTest": {
"service": "AppSync",
"providerPlugin": "awscloudformation",
"output": {
"authConfig": {
"additionalAuthenticationProviders": [],
"defaultAuthentication": {
"authenticationType": "API_KEY",
"apiKeyConfig": {
"apiKeyExpirationDays": 365,
"description": ""
}
},
"additionalAuthenticationProviders": []
},
"authenticationType": "API_KEY"
}
}
}
},
"providerPlugin": "awscloudformation",
"service": "AppSync"
}
}
}
9 changes: 9 additions & 0 deletions amplify/backend/types/amplify-dependent-resources-ref.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
export type AmplifyDependentResourcesAttributes = {
"api": {
"BackendBuildTest": {
"GraphQLAPIEndpointOutput": "string",
"GraphQLAPIIdOutput": "string",
"GraphQLAPIKeyOutput": "string"
}
}
}
27 changes: 22 additions & 5 deletions amplify/cli.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,21 @@
"addmissingownerfields": true,
"improvepluralization": false,
"validatetypenamereservedwords": true,
"useexperimentalpipelinedtransformer": false,
"useexperimentalpipelinedtransformer": true,
"enableiterativegsiupdates": true,
"secondarykeyasgsi": true,
"skipoverridemutationinputtypes": true
"skipoverridemutationinputtypes": true,
"transformerversion": 2,
"suppressschemamigrationprompt": true,
"securityenhancementnotification": false,
"showfieldauthnotification": false,
"usesubusernamefordefaultidentityclaim": true,
"usefieldnameforprimarykeyconnectionfield": false,
"enableautoindexquerynames": true,
"respectprimarykeyattributesonconnectionfield": true,
"shoulddeepmergedirectiveconfigdefaults": false,
"populateownerfieldforstaticgroupauth": true,
"subscriptionsinheritprimaryauth": false
},
"frontend-ios": {
"enablexcodeintegration": true
Expand All @@ -16,7 +27,8 @@
"enablecaseinsensitivity": true,
"useinclusiveterminology": true,
"breakcirculardependency": true,
"forcealiasattributes": false
"forcealiasattributes": false,
"useenabledmfas": true
},
"codegen": {
"useappsyncmodelgenplugin": true,
Expand All @@ -28,7 +40,8 @@
"handlelistnullabilitytransparently": true,
"emitauthprovider": true,
"generateindexrules": true,
"enabledartnullsafety": true
"enabledartnullsafety": true,
"generatemodelsforlazyloadandcustomselectionset": false
},
"appsync": {
"generategraphqlpermissions": true
Expand All @@ -40,6 +53,10 @@
"rekognition": 1,
"textract": 1,
"comprehend": 1
},
"project": {
"overrides": true
}
}
},
"debug": {}
}
15 changes: 15 additions & 0 deletions amplify/team-provider-info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"mainline": {
"awscloudformation": {
"AuthRoleName": "amplify-backendbuildintegtes-mainline-0c448-authRole",
"UnauthRoleArn": "arn:aws:iam::342109887285:role/amplify-backendbuildintegtes-mainline-0c448-unauthRole",
"AuthRoleArn": "arn:aws:iam::342109887285:role/amplify-backendbuildintegtes-mainline-0c448-authRole",
"Region": "us-east-1",
"DeploymentBucketName": "amplify-backendbuildintegtes-mainline-0c448-deployment",
"UnauthRoleName": "amplify-backendbuildintegtes-mainline-0c448-unauthRole",
"StackName": "amplify-backendbuildintegtes-mainline-0c448",
"StackId": "arn:aws:cloudformation:us-east-1:342109887285:stack/amplify-backendbuildintegtes-mainline-0c448/fe05aaa0-a2d6-11ef-b6f9-0e68ec2a59a3",
"AmplifyAppId": "d2ywg2o4ecth57"
}
}
}

0 comments on commit 0311826

Please sign in to comment.