├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── __mocks__ ├── fs-extra.js ├── mock-ops-feature.js ├── opn.js └── ora.js ├── __tests__ ├── bin │ └── feature-command.test.js └── lib │ ├── aws-operations │ ├── aws-client.test.js │ ├── aws-config-info-manager.test.js │ ├── aws-config-manager.test.js │ ├── aws-config-new-user.test.js │ ├── aws-config-profile-reader.test.js │ ├── aws-exception-handler.test.js │ ├── mobile-api-content-generator.test.js │ ├── mobile-exportjs-file-manager.test.js │ ├── mobile-project-export-manager.test.js │ ├── mobile-yaml-ops.test.js │ └── mobile-yaml-schema.test.js │ ├── awsm-base-manager.test.js │ ├── backend-create.test.js │ ├── backend-delete.test.js │ ├── backend-import.test.js │ ├── backend-operations │ ├── appsync-operations │ │ ├── appsync-manager.test.js │ │ ├── helpers │ │ │ ├── helper-apiKeys.test.js │ │ │ ├── helper-dataSources.test.js │ │ │ ├── helper-dynamoDB.test.js │ │ │ ├── helper-graphqlApi.test.js │ │ │ ├── helper-resolvers.test.js │ │ │ ├── helper-schema.test.js │ │ │ └── helper-serviceRoles.test.js │ │ ├── ops-appsync-create.test.js │ │ ├── ops-appsync-delete.test.js │ │ ├── ops-appsync-retrieve.test.js │ │ └── ops-appsync-update.test.js │ ├── backend-info-manager.test.js │ ├── backend-spec-manager.test.js │ ├── cloud-api-lambda-builder.test.js │ ├── cloud-api-lambda-uploader.test.js │ ├── ops-analytics.test.js │ ├── ops-appsync.test.js │ ├── ops-cloud-api.test.js │ ├── ops-database.test.js │ ├── ops-hosting.test.js │ ├── ops-project.test.js │ ├── ops-user-files.test.js │ └── ops-user-signin.test.js │ ├── backend-retrieve.test.js │ ├── backend-update.test.js │ ├── build-backend.test.js │ ├── command-init.test.js │ ├── command-remove.test.js │ ├── feature-operations │ ├── analytics-ops-test.js │ ├── appsync-ops.test.js │ ├── cloud-api-ops-test.js │ ├── database-ops-test.js │ ├── hosting-ops-test.js │ ├── user-files-ops-test.js │ └── user-signin-ops-test.js │ ├── init-steps │ ├── s1-analyze-project.test.js │ ├── s2-choose-strategy.test.js │ ├── s3-initialize.test.js │ ├── s4-configure.test.js │ ├── s5-setup-backend.test.js │ ├── s60-on-success.test.js │ └── s61-on-failure.test.js │ ├── project-info-manager.test.js │ └── utils │ ├── awsmobilejs-constant.test.js │ ├── awsmobilejs-name-manager.test.js │ ├── awsmobilejs-path-manager.test.js │ ├── awsmobilejs-publish-ignore.test.js │ ├── cli-config-manager.js.test.js │ ├── dependency-manager.test.js │ ├── directory-file-ops.test.js │ ├── feature-dir-mapping.test.js │ ├── feature-ops-mapping.test.js │ ├── feature-project-ops-mapping.test.js │ ├── feature-yaml-name-mapping.test.js │ ├── feature-yaml-template-mapping.test.js │ ├── framework-config-mappings.test.js │ ├── git-manager.test.js │ ├── object-ops.test.js │ ├── press-enter-to-continue.test.js │ ├── starter-config-mapping.test.js │ └── starter-repo-mapping.test.js ├── bin ├── awsmobile ├── awsmobile-configure ├── awsmobile-console ├── awsmobile-delete ├── awsmobile-features ├── awsmobile-init ├── awsmobile-publish ├── awsmobile-pull ├── awsmobile-push ├── awsmobile-run ├── awsmobile-start └── feature-command.js ├── codecov.yml ├── integration-test ├── 0100_install.sh ├── 0500_empty_project.sh ├── 0600_set_cli_config.sh ├── 0700_blank_all_push.sh └── 9999_uninstall.sh ├── lib ├── aws-operations │ ├── aws-client.js │ ├── aws-config-info-manager.js │ ├── aws-config-manager.js │ ├── aws-config-new-user.js │ ├── aws-config-profile-reader.js │ ├── aws-exception-handler.js │ ├── aws-regions.js │ ├── cloud-formation-codes.js │ ├── mobile-api-content-generator.js │ ├── mobile-exportjs-file-manager.js │ ├── mobile-features.js │ ├── mobile-project-export-manager.js │ ├── mobile-yaml-ops.js │ └── mobile-yaml-schema.js ├── awsm-base-manager.js ├── awsm-starter-manager.js ├── backend-create.js ├── backend-delete.js ├── backend-import.js ├── backend-operations │ ├── appsync-operations │ │ ├── appsync-manager.js │ │ ├── helpers │ │ │ ├── appsync-wait-logic.js │ │ │ ├── helper-apiKeys.js │ │ │ ├── helper-dataSources.js │ │ │ ├── helper-dynamoDB.js │ │ │ ├── helper-graphqlApi.js │ │ │ ├── helper-resolvers.js │ │ │ ├── helper-schema.js │ │ │ └── helper-serviceRoles.js │ │ ├── ops-appsync-create.js │ │ ├── ops-appsync-delete.js │ │ ├── ops-appsync-retrieve.js │ │ └── ops-appsync-update.js │ ├── backend-info-manager.js │ ├── backend-spec-manager.js │ ├── cloud-api-lambda-builder.js │ ├── cloud-api-lambda-uploader.js │ ├── ops-analytics.js │ ├── ops-appsync.js │ ├── ops-cloud-api.js │ ├── ops-database.js │ ├── ops-hosting.js │ ├── ops-project.js │ ├── ops-user-files.js │ └── ops-user-signin.js ├── backend-retrieve.js ├── backend-update.js ├── backend-wait-logic.js ├── build-backend.js ├── build-frontend.js ├── command-init.js ├── command-publish.js ├── command-remove.js ├── command-start.js ├── feature-operations │ ├── backend-templates │ │ ├── analytics.yml │ │ ├── appsync.yml │ │ ├── appsync │ │ │ ├── apiKeys.json │ │ │ ├── configurables │ │ │ │ ├── graphqlApi_apiKey.json │ │ │ │ ├── graphqlApi_cognito.json │ │ │ │ └── graphqlApi_iam.json │ │ │ ├── dataSources.json │ │ │ ├── graphqlApi.json │ │ │ ├── resolver-mappings │ │ │ │ ├── Event.comments.request │ │ │ │ ├── Event.comments.response │ │ │ │ ├── Mutation.commentOnEvent.request │ │ │ │ ├── Mutation.commentOnEvent.response │ │ │ │ ├── Mutation.createEvent.request │ │ │ │ ├── Mutation.createEvent.response │ │ │ │ ├── Mutation.deleteEvent.request │ │ │ │ ├── Mutation.deleteEvent.response │ │ │ │ ├── Query.getEvent.request │ │ │ │ ├── Query.getEvent.response │ │ │ │ ├── Query.listEvents.request │ │ │ │ └── Query.listEvents.response │ │ │ ├── resolvers.json │ │ │ └── schema.graphql │ │ ├── cloud-api.yml │ │ ├── cloud-api │ │ │ ├── .gitkeep │ │ │ ├── dynamo-api │ │ │ │ ├── app.vm │ │ │ │ └── files │ │ │ │ │ ├── lambda.js │ │ │ │ │ └── package.json │ │ │ └── lambda-package │ │ │ │ ├── app.vm │ │ │ │ └── files │ │ │ │ ├── lambda.js │ │ │ │ └── package.json │ │ ├── database.yml │ │ ├── hosting.yml │ │ ├── project-creation-content.zip │ │ ├── user-files.yml │ │ └── user-signin.yml │ └── scripts │ │ ├── analytics-ops.js │ │ ├── appsync-ops.js │ │ ├── cloud-api-ops.js │ │ ├── cloud-api │ │ └── invoke.js │ │ ├── database-ops.js │ │ ├── hosting-ops.js │ │ ├── lib │ │ └── function-generation.js │ │ ├── user-files-ops.js │ │ └── user-signin-ops.js ├── init-steps │ ├── s1-analyze-project.js │ ├── s2-choose-strategy.js │ ├── s3-initialize.js │ ├── s4-configure.js │ ├── s5-setup-backend.js │ ├── s60-on-success.js │ └── s61-on-failure.js ├── project-config-manager.js ├── project-info-manager.js ├── project-validator.js └── utils │ ├── awsmobilejs-constant.js │ ├── awsmobilejs-name-manager.js │ ├── awsmobilejs-path-manager.js │ ├── awsmobilejs-publish-ignore.js │ ├── cli-config-manager.js │ ├── dependency-manager.js │ ├── directory-file-ops.js │ ├── feature-dir-mapping.js │ ├── feature-ops-mapping.js │ ├── feature-project-ops-mapping.js │ ├── feature-yaml-name-mapping.js │ ├── feature-yaml-template-mapping.js │ ├── framework-config-mapping.js │ ├── git-manager.js │ ├── object-ops.js │ ├── press-enter-to-continue.js │ ├── starter-config-mapping.js │ ├── starter-framework-mapping.js │ └── starter-repo-mapping.js ├── package.json └── yarn.lock /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/** 2 | .DS_Store -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/fs-extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__mocks__/fs-extra.js -------------------------------------------------------------------------------- /__mocks__/mock-ops-feature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__mocks__/mock-ops-feature.js -------------------------------------------------------------------------------- /__mocks__/opn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__mocks__/opn.js -------------------------------------------------------------------------------- /__mocks__/ora.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__mocks__/ora.js -------------------------------------------------------------------------------- /__tests__/bin/feature-command.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/bin/feature-command.test.js -------------------------------------------------------------------------------- /__tests__/lib/aws-operations/aws-client.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/aws-operations/aws-client.test.js -------------------------------------------------------------------------------- /__tests__/lib/aws-operations/aws-config-info-manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/aws-operations/aws-config-info-manager.test.js -------------------------------------------------------------------------------- /__tests__/lib/aws-operations/aws-config-manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/aws-operations/aws-config-manager.test.js -------------------------------------------------------------------------------- /__tests__/lib/aws-operations/aws-config-new-user.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/aws-operations/aws-config-new-user.test.js -------------------------------------------------------------------------------- /__tests__/lib/aws-operations/aws-config-profile-reader.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/aws-operations/aws-config-profile-reader.test.js -------------------------------------------------------------------------------- /__tests__/lib/aws-operations/aws-exception-handler.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/aws-operations/aws-exception-handler.test.js -------------------------------------------------------------------------------- /__tests__/lib/aws-operations/mobile-api-content-generator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/aws-operations/mobile-api-content-generator.test.js -------------------------------------------------------------------------------- /__tests__/lib/aws-operations/mobile-exportjs-file-manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/aws-operations/mobile-exportjs-file-manager.test.js -------------------------------------------------------------------------------- /__tests__/lib/aws-operations/mobile-project-export-manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/aws-operations/mobile-project-export-manager.test.js -------------------------------------------------------------------------------- /__tests__/lib/aws-operations/mobile-yaml-ops.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/aws-operations/mobile-yaml-ops.test.js -------------------------------------------------------------------------------- /__tests__/lib/aws-operations/mobile-yaml-schema.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/aws-operations/mobile-yaml-schema.test.js -------------------------------------------------------------------------------- /__tests__/lib/awsm-base-manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/awsm-base-manager.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-create.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-create.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-delete.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-delete.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-import.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-import.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/appsync-operations/appsync-manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/appsync-operations/appsync-manager.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/appsync-operations/helpers/helper-apiKeys.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/appsync-operations/helpers/helper-apiKeys.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/appsync-operations/helpers/helper-dataSources.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/appsync-operations/helpers/helper-dataSources.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/appsync-operations/helpers/helper-dynamoDB.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/appsync-operations/helpers/helper-dynamoDB.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/appsync-operations/helpers/helper-graphqlApi.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/appsync-operations/helpers/helper-graphqlApi.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/appsync-operations/helpers/helper-resolvers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/appsync-operations/helpers/helper-resolvers.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/appsync-operations/helpers/helper-schema.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/appsync-operations/helpers/helper-schema.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/appsync-operations/helpers/helper-serviceRoles.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/appsync-operations/helpers/helper-serviceRoles.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/appsync-operations/ops-appsync-create.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/appsync-operations/ops-appsync-create.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/appsync-operations/ops-appsync-delete.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/appsync-operations/ops-appsync-delete.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/appsync-operations/ops-appsync-retrieve.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/appsync-operations/ops-appsync-retrieve.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/appsync-operations/ops-appsync-update.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/appsync-operations/ops-appsync-update.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/backend-info-manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/backend-info-manager.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/backend-spec-manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/backend-spec-manager.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/cloud-api-lambda-builder.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/cloud-api-lambda-builder.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/cloud-api-lambda-uploader.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/cloud-api-lambda-uploader.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/ops-analytics.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/ops-analytics.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/ops-appsync.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/ops-appsync.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/ops-cloud-api.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/ops-cloud-api.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/ops-database.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/ops-database.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/ops-hosting.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/ops-hosting.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/ops-project.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/ops-project.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/ops-user-files.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/ops-user-files.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-operations/ops-user-signin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-operations/ops-user-signin.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-retrieve.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-retrieve.test.js -------------------------------------------------------------------------------- /__tests__/lib/backend-update.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/backend-update.test.js -------------------------------------------------------------------------------- /__tests__/lib/build-backend.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/build-backend.test.js -------------------------------------------------------------------------------- /__tests__/lib/command-init.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/command-init.test.js -------------------------------------------------------------------------------- /__tests__/lib/command-remove.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/command-remove.test.js -------------------------------------------------------------------------------- /__tests__/lib/feature-operations/analytics-ops-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/feature-operations/analytics-ops-test.js -------------------------------------------------------------------------------- /__tests__/lib/feature-operations/appsync-ops.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/feature-operations/appsync-ops.test.js -------------------------------------------------------------------------------- /__tests__/lib/feature-operations/cloud-api-ops-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/feature-operations/cloud-api-ops-test.js -------------------------------------------------------------------------------- /__tests__/lib/feature-operations/database-ops-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/feature-operations/database-ops-test.js -------------------------------------------------------------------------------- /__tests__/lib/feature-operations/hosting-ops-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/feature-operations/hosting-ops-test.js -------------------------------------------------------------------------------- /__tests__/lib/feature-operations/user-files-ops-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/feature-operations/user-files-ops-test.js -------------------------------------------------------------------------------- /__tests__/lib/feature-operations/user-signin-ops-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/feature-operations/user-signin-ops-test.js -------------------------------------------------------------------------------- /__tests__/lib/init-steps/s1-analyze-project.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/init-steps/s1-analyze-project.test.js -------------------------------------------------------------------------------- /__tests__/lib/init-steps/s2-choose-strategy.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/init-steps/s2-choose-strategy.test.js -------------------------------------------------------------------------------- /__tests__/lib/init-steps/s3-initialize.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/init-steps/s3-initialize.test.js -------------------------------------------------------------------------------- /__tests__/lib/init-steps/s4-configure.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/init-steps/s4-configure.test.js -------------------------------------------------------------------------------- /__tests__/lib/init-steps/s5-setup-backend.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/init-steps/s5-setup-backend.test.js -------------------------------------------------------------------------------- /__tests__/lib/init-steps/s60-on-success.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/init-steps/s60-on-success.test.js -------------------------------------------------------------------------------- /__tests__/lib/init-steps/s61-on-failure.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/init-steps/s61-on-failure.test.js -------------------------------------------------------------------------------- /__tests__/lib/project-info-manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/project-info-manager.test.js -------------------------------------------------------------------------------- /__tests__/lib/utils/awsmobilejs-constant.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/utils/awsmobilejs-constant.test.js -------------------------------------------------------------------------------- /__tests__/lib/utils/awsmobilejs-name-manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/utils/awsmobilejs-name-manager.test.js -------------------------------------------------------------------------------- /__tests__/lib/utils/awsmobilejs-path-manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/utils/awsmobilejs-path-manager.test.js -------------------------------------------------------------------------------- /__tests__/lib/utils/awsmobilejs-publish-ignore.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/utils/awsmobilejs-publish-ignore.test.js -------------------------------------------------------------------------------- /__tests__/lib/utils/cli-config-manager.js.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/utils/cli-config-manager.js.test.js -------------------------------------------------------------------------------- /__tests__/lib/utils/dependency-manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/utils/dependency-manager.test.js -------------------------------------------------------------------------------- /__tests__/lib/utils/directory-file-ops.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/utils/directory-file-ops.test.js -------------------------------------------------------------------------------- /__tests__/lib/utils/feature-dir-mapping.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/utils/feature-dir-mapping.test.js -------------------------------------------------------------------------------- /__tests__/lib/utils/feature-ops-mapping.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/utils/feature-ops-mapping.test.js -------------------------------------------------------------------------------- /__tests__/lib/utils/feature-project-ops-mapping.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/utils/feature-project-ops-mapping.test.js -------------------------------------------------------------------------------- /__tests__/lib/utils/feature-yaml-name-mapping.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/utils/feature-yaml-name-mapping.test.js -------------------------------------------------------------------------------- /__tests__/lib/utils/feature-yaml-template-mapping.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/utils/feature-yaml-template-mapping.test.js -------------------------------------------------------------------------------- /__tests__/lib/utils/framework-config-mappings.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/utils/framework-config-mappings.test.js -------------------------------------------------------------------------------- /__tests__/lib/utils/git-manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/utils/git-manager.test.js -------------------------------------------------------------------------------- /__tests__/lib/utils/object-ops.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/utils/object-ops.test.js -------------------------------------------------------------------------------- /__tests__/lib/utils/press-enter-to-continue.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/utils/press-enter-to-continue.test.js -------------------------------------------------------------------------------- /__tests__/lib/utils/starter-config-mapping.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/utils/starter-config-mapping.test.js -------------------------------------------------------------------------------- /__tests__/lib/utils/starter-repo-mapping.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/__tests__/lib/utils/starter-repo-mapping.test.js -------------------------------------------------------------------------------- /bin/awsmobile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/bin/awsmobile -------------------------------------------------------------------------------- /bin/awsmobile-configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/bin/awsmobile-configure -------------------------------------------------------------------------------- /bin/awsmobile-console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/bin/awsmobile-console -------------------------------------------------------------------------------- /bin/awsmobile-delete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/bin/awsmobile-delete -------------------------------------------------------------------------------- /bin/awsmobile-features: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/bin/awsmobile-features -------------------------------------------------------------------------------- /bin/awsmobile-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/bin/awsmobile-init -------------------------------------------------------------------------------- /bin/awsmobile-publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/bin/awsmobile-publish -------------------------------------------------------------------------------- /bin/awsmobile-pull: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/bin/awsmobile-pull -------------------------------------------------------------------------------- /bin/awsmobile-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/bin/awsmobile-push -------------------------------------------------------------------------------- /bin/awsmobile-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/bin/awsmobile-run -------------------------------------------------------------------------------- /bin/awsmobile-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/bin/awsmobile-start -------------------------------------------------------------------------------- /bin/feature-command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/bin/feature-command.js -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/codecov.yml -------------------------------------------------------------------------------- /integration-test/0100_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/integration-test/0100_install.sh -------------------------------------------------------------------------------- /integration-test/0500_empty_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/integration-test/0500_empty_project.sh -------------------------------------------------------------------------------- /integration-test/0600_set_cli_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/integration-test/0600_set_cli_config.sh -------------------------------------------------------------------------------- /integration-test/0700_blank_all_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/integration-test/0700_blank_all_push.sh -------------------------------------------------------------------------------- /integration-test/9999_uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/integration-test/9999_uninstall.sh -------------------------------------------------------------------------------- /lib/aws-operations/aws-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/aws-operations/aws-client.js -------------------------------------------------------------------------------- /lib/aws-operations/aws-config-info-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/aws-operations/aws-config-info-manager.js -------------------------------------------------------------------------------- /lib/aws-operations/aws-config-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/aws-operations/aws-config-manager.js -------------------------------------------------------------------------------- /lib/aws-operations/aws-config-new-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/aws-operations/aws-config-new-user.js -------------------------------------------------------------------------------- /lib/aws-operations/aws-config-profile-reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/aws-operations/aws-config-profile-reader.js -------------------------------------------------------------------------------- /lib/aws-operations/aws-exception-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/aws-operations/aws-exception-handler.js -------------------------------------------------------------------------------- /lib/aws-operations/aws-regions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/aws-operations/aws-regions.js -------------------------------------------------------------------------------- /lib/aws-operations/cloud-formation-codes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/aws-operations/cloud-formation-codes.js -------------------------------------------------------------------------------- /lib/aws-operations/mobile-api-content-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/aws-operations/mobile-api-content-generator.js -------------------------------------------------------------------------------- /lib/aws-operations/mobile-exportjs-file-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/aws-operations/mobile-exportjs-file-manager.js -------------------------------------------------------------------------------- /lib/aws-operations/mobile-features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/aws-operations/mobile-features.js -------------------------------------------------------------------------------- /lib/aws-operations/mobile-project-export-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/aws-operations/mobile-project-export-manager.js -------------------------------------------------------------------------------- /lib/aws-operations/mobile-yaml-ops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/aws-operations/mobile-yaml-ops.js -------------------------------------------------------------------------------- /lib/aws-operations/mobile-yaml-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/aws-operations/mobile-yaml-schema.js -------------------------------------------------------------------------------- /lib/awsm-base-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/awsm-base-manager.js -------------------------------------------------------------------------------- /lib/awsm-starter-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/awsm-starter-manager.js -------------------------------------------------------------------------------- /lib/backend-create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-create.js -------------------------------------------------------------------------------- /lib/backend-delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-delete.js -------------------------------------------------------------------------------- /lib/backend-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-import.js -------------------------------------------------------------------------------- /lib/backend-operations/appsync-operations/appsync-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/appsync-operations/appsync-manager.js -------------------------------------------------------------------------------- /lib/backend-operations/appsync-operations/helpers/appsync-wait-logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/appsync-operations/helpers/appsync-wait-logic.js -------------------------------------------------------------------------------- /lib/backend-operations/appsync-operations/helpers/helper-apiKeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/appsync-operations/helpers/helper-apiKeys.js -------------------------------------------------------------------------------- /lib/backend-operations/appsync-operations/helpers/helper-dataSources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/appsync-operations/helpers/helper-dataSources.js -------------------------------------------------------------------------------- /lib/backend-operations/appsync-operations/helpers/helper-dynamoDB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/appsync-operations/helpers/helper-dynamoDB.js -------------------------------------------------------------------------------- /lib/backend-operations/appsync-operations/helpers/helper-graphqlApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/appsync-operations/helpers/helper-graphqlApi.js -------------------------------------------------------------------------------- /lib/backend-operations/appsync-operations/helpers/helper-resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/appsync-operations/helpers/helper-resolvers.js -------------------------------------------------------------------------------- /lib/backend-operations/appsync-operations/helpers/helper-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/appsync-operations/helpers/helper-schema.js -------------------------------------------------------------------------------- /lib/backend-operations/appsync-operations/helpers/helper-serviceRoles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/appsync-operations/helpers/helper-serviceRoles.js -------------------------------------------------------------------------------- /lib/backend-operations/appsync-operations/ops-appsync-create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/appsync-operations/ops-appsync-create.js -------------------------------------------------------------------------------- /lib/backend-operations/appsync-operations/ops-appsync-delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/appsync-operations/ops-appsync-delete.js -------------------------------------------------------------------------------- /lib/backend-operations/appsync-operations/ops-appsync-retrieve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/appsync-operations/ops-appsync-retrieve.js -------------------------------------------------------------------------------- /lib/backend-operations/appsync-operations/ops-appsync-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/appsync-operations/ops-appsync-update.js -------------------------------------------------------------------------------- /lib/backend-operations/backend-info-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/backend-info-manager.js -------------------------------------------------------------------------------- /lib/backend-operations/backend-spec-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/backend-spec-manager.js -------------------------------------------------------------------------------- /lib/backend-operations/cloud-api-lambda-builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/cloud-api-lambda-builder.js -------------------------------------------------------------------------------- /lib/backend-operations/cloud-api-lambda-uploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/cloud-api-lambda-uploader.js -------------------------------------------------------------------------------- /lib/backend-operations/ops-analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/ops-analytics.js -------------------------------------------------------------------------------- /lib/backend-operations/ops-appsync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/ops-appsync.js -------------------------------------------------------------------------------- /lib/backend-operations/ops-cloud-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/ops-cloud-api.js -------------------------------------------------------------------------------- /lib/backend-operations/ops-database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/ops-database.js -------------------------------------------------------------------------------- /lib/backend-operations/ops-hosting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/ops-hosting.js -------------------------------------------------------------------------------- /lib/backend-operations/ops-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/ops-project.js -------------------------------------------------------------------------------- /lib/backend-operations/ops-user-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/ops-user-files.js -------------------------------------------------------------------------------- /lib/backend-operations/ops-user-signin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-operations/ops-user-signin.js -------------------------------------------------------------------------------- /lib/backend-retrieve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-retrieve.js -------------------------------------------------------------------------------- /lib/backend-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-update.js -------------------------------------------------------------------------------- /lib/backend-wait-logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/backend-wait-logic.js -------------------------------------------------------------------------------- /lib/build-backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/build-backend.js -------------------------------------------------------------------------------- /lib/build-frontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/build-frontend.js -------------------------------------------------------------------------------- /lib/command-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/command-init.js -------------------------------------------------------------------------------- /lib/command-publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/command-publish.js -------------------------------------------------------------------------------- /lib/command-remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/command-remove.js -------------------------------------------------------------------------------- /lib/command-start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/command-start.js -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/analytics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/analytics.yml -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/appsync.yml: -------------------------------------------------------------------------------- 1 | --- !com.amazonaws.mobilehub.v0.Project -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/appsync/apiKeys.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/appsync/configurables/graphqlApi_apiKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/appsync/configurables/graphqlApi_apiKey.json -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/appsync/configurables/graphqlApi_cognito.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/appsync/configurables/graphqlApi_cognito.json -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/appsync/configurables/graphqlApi_iam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/appsync/configurables/graphqlApi_iam.json -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/appsync/dataSources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/appsync/dataSources.json -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/appsync/graphqlApi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/appsync/graphqlApi.json -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/appsync/resolver-mappings/Event.comments.request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/appsync/resolver-mappings/Event.comments.request -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/appsync/resolver-mappings/Event.comments.response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/appsync/resolver-mappings/Event.comments.response -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/appsync/resolver-mappings/Mutation.commentOnEvent.request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/appsync/resolver-mappings/Mutation.commentOnEvent.request -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/appsync/resolver-mappings/Mutation.commentOnEvent.response: -------------------------------------------------------------------------------- 1 | $util.toJson($context.result) -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/appsync/resolver-mappings/Mutation.createEvent.request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/appsync/resolver-mappings/Mutation.createEvent.request -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/appsync/resolver-mappings/Mutation.createEvent.response: -------------------------------------------------------------------------------- 1 | $util.toJson($context.result) -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/appsync/resolver-mappings/Mutation.deleteEvent.request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/appsync/resolver-mappings/Mutation.deleteEvent.request -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/appsync/resolver-mappings/Mutation.deleteEvent.response: -------------------------------------------------------------------------------- 1 | $util.toJson($context.result) -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/appsync/resolver-mappings/Query.getEvent.request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/appsync/resolver-mappings/Query.getEvent.request -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/appsync/resolver-mappings/Query.getEvent.response: -------------------------------------------------------------------------------- 1 | $util.toJson($context.result) -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/appsync/resolver-mappings/Query.listEvents.request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/appsync/resolver-mappings/Query.listEvents.request -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/appsync/resolver-mappings/Query.listEvents.response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/appsync/resolver-mappings/Query.listEvents.response -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/appsync/resolvers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/appsync/resolvers.json -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/appsync/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/appsync/schema.graphql -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/cloud-api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/cloud-api.yml -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/cloud-api/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/cloud-api/dynamo-api/app.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/cloud-api/dynamo-api/app.vm -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/cloud-api/dynamo-api/files/lambda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/cloud-api/dynamo-api/files/lambda.js -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/cloud-api/dynamo-api/files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/cloud-api/dynamo-api/files/package.json -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/cloud-api/lambda-package/app.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/cloud-api/lambda-package/app.vm -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/cloud-api/lambda-package/files/lambda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/cloud-api/lambda-package/files/lambda.js -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/cloud-api/lambda-package/files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/cloud-api/lambda-package/files/package.json -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/database.yml -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/hosting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/hosting.yml -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/project-creation-content.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/project-creation-content.zip -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/user-files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/user-files.yml -------------------------------------------------------------------------------- /lib/feature-operations/backend-templates/user-signin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/backend-templates/user-signin.yml -------------------------------------------------------------------------------- /lib/feature-operations/scripts/analytics-ops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/scripts/analytics-ops.js -------------------------------------------------------------------------------- /lib/feature-operations/scripts/appsync-ops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/scripts/appsync-ops.js -------------------------------------------------------------------------------- /lib/feature-operations/scripts/cloud-api-ops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/scripts/cloud-api-ops.js -------------------------------------------------------------------------------- /lib/feature-operations/scripts/cloud-api/invoke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/scripts/cloud-api/invoke.js -------------------------------------------------------------------------------- /lib/feature-operations/scripts/database-ops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/scripts/database-ops.js -------------------------------------------------------------------------------- /lib/feature-operations/scripts/hosting-ops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/scripts/hosting-ops.js -------------------------------------------------------------------------------- /lib/feature-operations/scripts/lib/function-generation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/scripts/lib/function-generation.js -------------------------------------------------------------------------------- /lib/feature-operations/scripts/user-files-ops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/scripts/user-files-ops.js -------------------------------------------------------------------------------- /lib/feature-operations/scripts/user-signin-ops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/feature-operations/scripts/user-signin-ops.js -------------------------------------------------------------------------------- /lib/init-steps/s1-analyze-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/init-steps/s1-analyze-project.js -------------------------------------------------------------------------------- /lib/init-steps/s2-choose-strategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/init-steps/s2-choose-strategy.js -------------------------------------------------------------------------------- /lib/init-steps/s3-initialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/init-steps/s3-initialize.js -------------------------------------------------------------------------------- /lib/init-steps/s4-configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/init-steps/s4-configure.js -------------------------------------------------------------------------------- /lib/init-steps/s5-setup-backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/init-steps/s5-setup-backend.js -------------------------------------------------------------------------------- /lib/init-steps/s60-on-success.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/init-steps/s60-on-success.js -------------------------------------------------------------------------------- /lib/init-steps/s61-on-failure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/init-steps/s61-on-failure.js -------------------------------------------------------------------------------- /lib/project-config-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/project-config-manager.js -------------------------------------------------------------------------------- /lib/project-info-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/project-info-manager.js -------------------------------------------------------------------------------- /lib/project-validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/project-validator.js -------------------------------------------------------------------------------- /lib/utils/awsmobilejs-constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/utils/awsmobilejs-constant.js -------------------------------------------------------------------------------- /lib/utils/awsmobilejs-name-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/utils/awsmobilejs-name-manager.js -------------------------------------------------------------------------------- /lib/utils/awsmobilejs-path-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/utils/awsmobilejs-path-manager.js -------------------------------------------------------------------------------- /lib/utils/awsmobilejs-publish-ignore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/utils/awsmobilejs-publish-ignore.js -------------------------------------------------------------------------------- /lib/utils/cli-config-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/utils/cli-config-manager.js -------------------------------------------------------------------------------- /lib/utils/dependency-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/utils/dependency-manager.js -------------------------------------------------------------------------------- /lib/utils/directory-file-ops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/utils/directory-file-ops.js -------------------------------------------------------------------------------- /lib/utils/feature-dir-mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/utils/feature-dir-mapping.js -------------------------------------------------------------------------------- /lib/utils/feature-ops-mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/utils/feature-ops-mapping.js -------------------------------------------------------------------------------- /lib/utils/feature-project-ops-mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/utils/feature-project-ops-mapping.js -------------------------------------------------------------------------------- /lib/utils/feature-yaml-name-mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/utils/feature-yaml-name-mapping.js -------------------------------------------------------------------------------- /lib/utils/feature-yaml-template-mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/utils/feature-yaml-template-mapping.js -------------------------------------------------------------------------------- /lib/utils/framework-config-mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/utils/framework-config-mapping.js -------------------------------------------------------------------------------- /lib/utils/git-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/utils/git-manager.js -------------------------------------------------------------------------------- /lib/utils/object-ops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/utils/object-ops.js -------------------------------------------------------------------------------- /lib/utils/press-enter-to-continue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/utils/press-enter-to-continue.js -------------------------------------------------------------------------------- /lib/utils/starter-config-mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/utils/starter-config-mapping.js -------------------------------------------------------------------------------- /lib/utils/starter-framework-mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/utils/starter-framework-mapping.js -------------------------------------------------------------------------------- /lib/utils/starter-repo-mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/lib/utils/starter-repo-mapping.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/awsmobile-cli/HEAD/yarn.lock --------------------------------------------------------------------------------