Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix custom application deployment IM-896 #77

Merged
merged 5 commits into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions application-templates/javascript/connect.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,14 @@ deployAs:
required: true
# - name: merchant-center-custom-application
# applicationType: merchant-center-custom-application
# endpoint: /
# configuration:
# standardConfiguration:
# - key: APPLICATION_ID
# - key: CUSTOM_APPLICATION_ID
# description: The Custom Application ID is provided when you add a Custom Application in the Merchant Center
# required: true
# - key: CLOUD_IDENTIFIER
# description: The identifier of the cloud Region that the Custom Application uses to connect to Composable Commerce. The values map to the actual Merchant Center API URL for that Region
# required: true
# default: 'gcp-eu'
# - key: ENTRY_POINT_URI_PATH
# description: The Application entry point URI path identified during registration of Custom Application
# required: true
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
To create Custom Application for the Merchant Center you can visit [getting starter documentation](https://docs.commercetools.com/custom-applications/getting-started).
To create Custom Application for the Merchant Center you can visit [getting starter documentation](https://docs.commercetools.com/custom-applications/getting-started) and for [Deploying on Connect] (https://docs.commercetools.com/custom-applications/deployment-examples/commercetools-connect)

The easiest way to get started is to use Merchant Center's [starter template](https://docs.commercetools.com/custom-applications/getting-started#installing-a-starter-template). The app should live inside this folder and it should be the Custom Application's root folder.

Once you finished developing the Merchant Center application, review and uncomment the proper configuration in [connect.yaml](../connect.yaml) to enable this application as part of the connector.
Once you finished developing the Merchant Center application, review and uncomment the proper configuration in [connect.yaml](../connect.yaml) to enable this application as part of the connector.
8 changes: 5 additions & 3 deletions application-templates/typescript/connect.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,14 @@ deployAs:
required: true
# - name: merchant-center-custom-application
# applicationType: merchant-center-custom-application
# endpoint: /
# configuration:
# standardConfiguration:
# - key: APPLICATION_ID
# - key: CUSTOM_APPLICATION_ID
# description: The Custom Application ID is provided when you add a Custom Application in the Merchant Center
# required: true
# - key: CLOUD_IDENTIFIER
# description: The identifier of the cloud Region that the Custom Application uses to connect to Composable Commerce. The values map to the actual Merchant Center API URL for that Region
# required: true
# default: 'gcp-eu'
# - key: ENTRY_POINT_URI_PATH
# description: The Application entry point URI path identified during registration of Custom Application
# required: true
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
To create Custom Application for the Merchant Center you can visit [getting starter documentation](https://docs.commercetools.com/custom-applications/getting-started).
To create Custom Application for the Merchant Center you can visit [getting starter documentation](https://docs.commercetools.com/custom-applications/getting-started) and for [Deploying on Connect] (https://docs.commercetools.com/custom-applications/deployment-examples/commercetools-connect)

The easiest way to get started is to use Merchant Center's [starter template](https://docs.commercetools.com/custom-applications/getting-started#installing-a-starter-template). The app should live inside this folder and it should be the Custom Application's root folder.

Once you finished developing the Merchant Center application, review and uncomment the proper configuration in [connect.yaml](../connect.yaml) to enable this application as part of the connector.
Once you finished developing the Merchant Center application, review and uncomment the proper configuration in [connect.yaml](../connect.yaml) to enable this application as part of the connector.
Loading