Skip to content

Commit

Permalink
prod:build:basechat
Browse files Browse the repository at this point in the history
  • Loading branch information
BuchananQuantum committed Mar 9, 2022
1 parent 0176916 commit 2dd34b4
Show file tree
Hide file tree
Showing 7 changed files with 142 additions and 0 deletions.
17 changes: 17 additions & 0 deletions amplify/.config/project-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"projectName": "basechat",
"version": "3.1",
"frontend": "javascript",
"javascript": {
"framework": "angular",
"config": {
"SourceDir": "src",
"DistributionDir": "www",
"BuildCommand": "npm.cmd run-script build",
"StartCommand": "ng serve"
}
},
"providers": [
"awscloudformation"
]
}
8 changes: 8 additions & 0 deletions amplify/README.md
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/
9 changes: 9 additions & 0 deletions amplify/backend/backend-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"hosting": {
"amplifyhosting": {
"service": "amplifyhosting",
"providerPlugin": "awscloudformation",
"type": "manual"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "Branch stack creation for AWS Amplify Console",
"Parameters": {
"env": {
"Type": "String"
},
"appId": {
"Type": "String"
},
"type": {
"Type": "String"
}
},
"Conditions": {
"isManual": {
"Fn::Equals": [
{
"Ref": "type"
},
"manual"
]
}
},
"Resources": {
"AmplifyBranch": {
"Condition": "isManual",
"Type": "AWS::Amplify::Branch",
"Properties": {
"BranchName": {
"Ref": "env"
},
"AppId": {
"Ref": "appId"
}
}
}
}
}
10 changes: 10 additions & 0 deletions amplify/backend/tags.json
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}"
}
]
36 changes: 36 additions & 0 deletions amplify/cli.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"features": {
"graphqltransformer": {
"addmissingownerfields": true,
"improvepluralization": true,
"validatetypenamereservedwords": true,
"useexperimentalpipelinedtransformer": false,
"enableiterativegsiupdates": true,
"secondarykeyasgsi": true,
"skipoverridemutationinputtypes": true
},
"frontend-ios": {
"enablexcodeintegration": true
},
"auth": {
"enablecaseinsensitivity": true,
"useinclusiveterminology": true,
"breakcirculardependency": 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
}
}
}
23 changes: 23 additions & 0 deletions amplify/team-provider-info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"dev": {
"awscloudformation": {
"AuthRoleName": "amplify-basechat-dev-190838-authRole",
"UnauthRoleArn": "arn:aws:iam::320034626965:role/amplify-basechat-dev-190838-unauthRole",
"AuthRoleArn": "arn:aws:iam::320034626965:role/amplify-basechat-dev-190838-authRole",
"Region": "us-east-1",
"DeploymentBucketName": "amplify-basechat-dev-190838-deployment",
"UnauthRoleName": "amplify-basechat-dev-190838-unauthRole",
"StackName": "amplify-basechat-dev-190838",
"StackId": "arn:aws:cloudformation:us-east-1:320034626965:stack/amplify-basechat-dev-190838/14abfd40-9f3d-11ec-a799-0ec1afcbebaf",
"AmplifyAppId": "d3kptqhwzvhi4z"
},
"categories": {
"hosting": {
"amplifyhosting": {
"appId": "d3kptqhwzvhi4z",
"type": "manual"
}
}
}
}
}

0 comments on commit 2dd34b4

Please sign in to comment.