This repository contains the source code for partner apps on the marketplace and helpful resources to build your own apps for Contentful.
Head over to the marketplace and follow the installation flow to set up any of the apps in your Contentful space.
The Marketplace Partner Apps repo is maintained as a single repository for apps, containing several ecosystem partner apps + the tools needed to build and maintain them. The apps
folder contains each partner app, and each sub-folder within apps
should contain all the code necessary to build, test, and deploy your app without references to other apps or folders. All dependencies between apps are indepedent and isolated from each other.
The marketplace-partner-apps
repo uses Circle CI (configured in .circleci/config.yml
) to deploy itself, and Lerna (configured in lerna.json
) to manage the collection of partner apps.
In order for your app to be deployed successfully (with the exception of the test script), it must meet the following criteria:
-
Have a
package.json
file with the followingscripts
:install-ci
- Installs required dependencies for your project. Highly recommended that the script is
npm ci
that installs off of a package-lock file.
- Installs required dependencies for your project. Highly recommended that the script is
build
- Creates a build artifact(s).
"react-scripts build"
is common for most apps without specific needs, though whatever tool or process you prefer is fine so long as it creates artifacts that can be referenced in the deploy step.
- Creates a build artifact(s).
test
(not necessary, but highly encouraged).- Once again
"react-scripts test"
is common for many apps and should be considered if you do not have complicated tests. Having at least basic testing and coverage will ensure your app does not deploy if breaking changes are introduced by your work or dependabot (see below).
- Once again
deploy
- All code deployed by the
marketplace-partner-apps
repo must be hosted by contentful. Your deploy job should look something like this:contentful-app-scripts upload --ci --bundle-dir ./build --organization-id ${DEFINITIONS_ORG_ID} --definition-id APP_DEFINITION_ID --token ${CONTENTFUL_CMA_TOKEN}
- Make sure--bundle-dir
points to the output of your build process (./build
if you used"react-scripts build"
). -DEFINITIONS_ORG_ID
andCONTENTFUL_CMA_TOKEN
do not need to be changed and will be appropriately filled by the build process. - The value ofAPP_DEFINITION_ID
can be the id you might have used to test your deploy in you contentful space. This value can be found in the app definition after creating a custom app. The Ecosystems Inteegrations team will update this value to a shared, official space. Please do not update it in subsequent changes/pull requests.
- All code deployed by the
-
Additional scripts that are highly encouraged:
deploy:staging
Similar to the deploy command but pointed toward a testing space environment.
Please note that dependabot is enabled in this repo and will run automatically. While it will attempt to only upgrade dependencies without breaking changes, it is possible it will still introduce issues. Creating and maintaining comprehensive tests is critical to preventing code and build issues.
When you are ready to submit your app to the marketplace apps repo, clone the repo locally, create a new branch with a descriptive name for the app/changes you are introducing, and create a pull-request against the main
branch. An ecosystems integrations will review your PR soon and let you know if any changes or clarifications are needed. To ensure the fastest approval time on your PR, make sure you:
- Fill out the pull-request template as much as possible. Screenshots, images, and videos are often helpful for providing context and are encouraged.
- Comment your changes, either in GitHub or the code itself to provide reviewers more context than they might get otherwise.
- Ensure your changes are wholly contained within your app's folder, and do not make alterations to other folders or the root level. If you have need for root-level changes, please create an issue instead.
- Prevent / reduce references to external resources and code. The
marketplace-partner-apps
is intended to be open and transparent and any external resources will be highly scrutinized.
Please note that merges to the main branch will trigger your deploy:staging script and thus deploy to staging. Merges to the production branch will trigger the deploy script and thus deploy to production.
The best way to get started on app development is with our create-contentful-app CLI tool. This tool will bootstrap a brand new project with all the boilerplate code you need to start building an app. If you are interested in learning how to build a simple example app, you can check out our tutorial.
Detailed documentation can be found in the App SDK documentation and the Management HTTP API reference documentation.
Please note that each app has its individual source code license associated with it. Refer to the LICENSE file in the apps root folder.
- Tutorial: Building your first app
- Webinar: How to build your first app with Contentful’s new App Framework
- App SDK documentation
- Management HTTP API reference documentation
- Marketplace
- App documentation
- Contentful Changelog
- Forma 36: The Contentful Design System
If you require support, or want to request a new feature then please use the appropriate support channel which will be listed with the app on our app marketplace.