Dev Guide
Dev GuideUser GuideGitHubNuGetDevCommunitySubmit a ticketLog In
GitHubNuGetDevCommunitySubmit a ticket

Publish the app in ODP App Directory

Publish a sample Optimizely Connect Platform (OCP) app in the Optimizely Data Platform (ODP) App Directory, allowing Optimizely customers to install and use it in their ODP accounts.

Before publishing your app to the Optimizely Data Platform (ODP) App Directory, you must first:

Throughout this quickstart guide, you have been working with the -dev tagged version of the app. This version is designed for internal testing and development of apps. When you finish developing your app and want to make it available to ODP customers, you need to change your app version in the app.yml file to a non-dev version. You have the following three version options:

  • Full release version – A version without any tag, for example, 1.0.0. This version is published to the ODP App Directory and is available to all ODP customers.
  • Beta version – A version with a beta tag, for example, 1.0.0-beta.1. This version is not visible in the ODP App Directory by default. Customers must have a special link to install it, which you can get from Optimizely support. For beta apps, you decide which customers can access your app.
  • Private version – A version with a private tag, for example, 1.0.0-private. As with beta versions, this version is not visible in the ODP App Directory. Customers must have a special link to install it, which you can get from Optimizely support. For private apps, you decide which customers can access your app.

Before you can publish a non-dev app for ODP customers to install, Optimizely must review and verify the app and its code in the App Review Process. Optimizely engineers will check your app for security vulnerabilities, performance issues, and compliance with the permitted use of the platform. For more information on the App Review Process, see Submit an app for review.

Publish the app to ODP App Directory

To publish your app to the ODP App Directory, change the version of your app in the app.yml file to a non-dev version. For this sample app, use a full release version (1.0.0):

meta:
  app_id: ocp_quickstart
  display_name: OCP Quickstart
  version: 1.0.0

Next, run the following command in the Optimizely Connect Platform (OCP) command-line interface (CLI):

$ ocp app prepare

The OCP CLI displays the following prompt to confirm that you want to send the app to the App Review Process. When you confirm, the app is built and sent to the Optimizely App Review team.

The app version is already in review. This will update the review and the app can't be published until it is approved. Are you sure?
Existing version not found...
Performing local validation...
...
Waiting for build (id=2759) to complete... CTRL+C to stop checking.
Build complete.

Your app has been sent to review. Your code will be available in a private repository on GitHub, and you will receive an invitation from GitHub by email for access. It is important you accept this invitation in order to receive communications about your app from the review team.

Once the review is approved, your app can be deployed to app directory.

You can run ocp review open [email protected] to open the review URL at any time.
The URL for your repo is https://github.com/Optimizely-Connect-Platform-AppReview/ocp_quickstart_1.0.0/pull/1

App Review Process

📘

Note

The App Review Process typically takes one to two business days to complete.

The Optimizely App Review team invites you to a GitHub repository with the app code. When you accept the invitation, you can see the pull request and feedback from Optimizely engineers as they review your code.

📘

Note

GitHub notifies you by email about any activity on your app review's GitHub repository.

If Optimizely determines that changes are required, Optimizely submits a GitHub pull request. After you make the requested changes, run ocp app prepare in the OCP CLI again with the same version. This updates the pull request with the latest code from your app.

When the Optimizely engineers approve your app review, you can publish your app by running the following command in the OCP CLI:

ocp directory publish [email protected]

Now, your app is available in the ODP App Directory for all Optimizely customers.