├── LICENSE ├── README.md ├── TestServices.md ├── api-connect-resources └── oauth_endpoint.yaml ├── app-connect-resources ├── Flow.yaml └── microservices-apis │ ├── Account_Check.json │ ├── Credit_Transaction.json │ └── Debit_Transaction.json ├── client-app └── node-red-flows │ ├── README.md │ └── flows.json ├── images ├── access-to-cluster.png ├── add-api-to-catalog.gif ├── api-connect-instance-create.png ├── api-defn-export.png ├── app-connect-flow.png ├── app-connect-instance-create.png ├── app_subscribe_plan.gif ├── architecture.png ├── cluster-status.png ├── configure_app.png ├── create_app.gif ├── create_funds_transfer_endpoint.gif ├── create_oauth_endpoint.gif ├── create_product_publish.gif ├── create_service.png ├── debit_account_service_msg.png ├── demo.gif ├── deploy_client_app.gif ├── flow-start.png ├── flow-test.gif ├── import-flow-check.gif ├── import-flow.gif ├── node-red-instance-create.png ├── note_api_connect_endpoint.gif ├── note_fund_transfer_url.gif ├── note_node_red_url.png ├── postman_accmgmtservice.png ├── postman_creditaccservice.png ├── postman_debitaccservice.png ├── postman_loginservice.png └── worker-nodes.png ├── microservices ├── account_management_service │ ├── Dockerfile │ ├── app.js │ ├── deploy.yaml │ └── package.json ├── credit_service │ ├── Dockerfile │ ├── app.js │ ├── deploy.yaml │ └── package.json ├── debit_service │ ├── Dockerfile │ ├── app.js │ ├── deploy.yaml │ └── package.json └── login_service │ ├── Dockerfile │ ├── app.js │ ├── deploy.yaml │ └── package.json └── mongodb └── deploy_mongodb.yaml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/README.md -------------------------------------------------------------------------------- /TestServices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/TestServices.md -------------------------------------------------------------------------------- /api-connect-resources/oauth_endpoint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/api-connect-resources/oauth_endpoint.yaml -------------------------------------------------------------------------------- /app-connect-resources/Flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/app-connect-resources/Flow.yaml -------------------------------------------------------------------------------- /app-connect-resources/microservices-apis/Account_Check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/app-connect-resources/microservices-apis/Account_Check.json -------------------------------------------------------------------------------- /app-connect-resources/microservices-apis/Credit_Transaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/app-connect-resources/microservices-apis/Credit_Transaction.json -------------------------------------------------------------------------------- /app-connect-resources/microservices-apis/Debit_Transaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/app-connect-resources/microservices-apis/Debit_Transaction.json -------------------------------------------------------------------------------- /client-app/node-red-flows/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /client-app/node-red-flows/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/client-app/node-red-flows/flows.json -------------------------------------------------------------------------------- /images/access-to-cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/access-to-cluster.png -------------------------------------------------------------------------------- /images/add-api-to-catalog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/add-api-to-catalog.gif -------------------------------------------------------------------------------- /images/api-connect-instance-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/api-connect-instance-create.png -------------------------------------------------------------------------------- /images/api-defn-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/api-defn-export.png -------------------------------------------------------------------------------- /images/app-connect-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/app-connect-flow.png -------------------------------------------------------------------------------- /images/app-connect-instance-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/app-connect-instance-create.png -------------------------------------------------------------------------------- /images/app_subscribe_plan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/app_subscribe_plan.gif -------------------------------------------------------------------------------- /images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/architecture.png -------------------------------------------------------------------------------- /images/cluster-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/cluster-status.png -------------------------------------------------------------------------------- /images/configure_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/configure_app.png -------------------------------------------------------------------------------- /images/create_app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/create_app.gif -------------------------------------------------------------------------------- /images/create_funds_transfer_endpoint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/create_funds_transfer_endpoint.gif -------------------------------------------------------------------------------- /images/create_oauth_endpoint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/create_oauth_endpoint.gif -------------------------------------------------------------------------------- /images/create_product_publish.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/create_product_publish.gif -------------------------------------------------------------------------------- /images/create_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/create_service.png -------------------------------------------------------------------------------- /images/debit_account_service_msg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/debit_account_service_msg.png -------------------------------------------------------------------------------- /images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/demo.gif -------------------------------------------------------------------------------- /images/deploy_client_app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/deploy_client_app.gif -------------------------------------------------------------------------------- /images/flow-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/flow-start.png -------------------------------------------------------------------------------- /images/flow-test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/flow-test.gif -------------------------------------------------------------------------------- /images/import-flow-check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/import-flow-check.gif -------------------------------------------------------------------------------- /images/import-flow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/import-flow.gif -------------------------------------------------------------------------------- /images/node-red-instance-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/node-red-instance-create.png -------------------------------------------------------------------------------- /images/note_api_connect_endpoint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/note_api_connect_endpoint.gif -------------------------------------------------------------------------------- /images/note_fund_transfer_url.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/note_fund_transfer_url.gif -------------------------------------------------------------------------------- /images/note_node_red_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/note_node_red_url.png -------------------------------------------------------------------------------- /images/postman_accmgmtservice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/postman_accmgmtservice.png -------------------------------------------------------------------------------- /images/postman_creditaccservice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/postman_creditaccservice.png -------------------------------------------------------------------------------- /images/postman_debitaccservice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/postman_debitaccservice.png -------------------------------------------------------------------------------- /images/postman_loginservice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/postman_loginservice.png -------------------------------------------------------------------------------- /images/worker-nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/images/worker-nodes.png -------------------------------------------------------------------------------- /microservices/account_management_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/microservices/account_management_service/Dockerfile -------------------------------------------------------------------------------- /microservices/account_management_service/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/microservices/account_management_service/app.js -------------------------------------------------------------------------------- /microservices/account_management_service/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/microservices/account_management_service/deploy.yaml -------------------------------------------------------------------------------- /microservices/account_management_service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/microservices/account_management_service/package.json -------------------------------------------------------------------------------- /microservices/credit_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/microservices/credit_service/Dockerfile -------------------------------------------------------------------------------- /microservices/credit_service/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/microservices/credit_service/app.js -------------------------------------------------------------------------------- /microservices/credit_service/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/microservices/credit_service/deploy.yaml -------------------------------------------------------------------------------- /microservices/credit_service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/microservices/credit_service/package.json -------------------------------------------------------------------------------- /microservices/debit_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/microservices/debit_service/Dockerfile -------------------------------------------------------------------------------- /microservices/debit_service/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/microservices/debit_service/app.js -------------------------------------------------------------------------------- /microservices/debit_service/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/microservices/debit_service/deploy.yaml -------------------------------------------------------------------------------- /microservices/debit_service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/microservices/debit_service/package.json -------------------------------------------------------------------------------- /microservices/login_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/microservices/login_service/Dockerfile -------------------------------------------------------------------------------- /microservices/login_service/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/microservices/login_service/app.js -------------------------------------------------------------------------------- /microservices/login_service/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/microservices/login_service/deploy.yaml -------------------------------------------------------------------------------- /microservices/login_service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/microservices/login_service/package.json -------------------------------------------------------------------------------- /mongodb/deploy_mongodb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/microservices-using-apiconnect-and-appconnect/HEAD/mongodb/deploy_mongodb.yaml --------------------------------------------------------------------------------