At Pact, we build a lot of Shopify sites. So much so, that we grew to think and speak in Shopify terms. We also build quite a few headless sites, leveraging Gatsby and Contentful.
While Contentful is a very pwoerful and flexible platform, it's also kind of limiting in terms of how many Content Types you can create.
We decided to apply Shopify's Settings Schema logic to Contentful.
Simple!
Head over to your Contentful Organization's Apps page and click Create app:
Give you app a name. Any name works! Then click "Create app".
In the app configuration screen, make sure to:
- Put in
https://contentful-schema-app.workwithpact.com/
as the public URL. - Select the "Entry field" location, as well as the "JSON object" field
- Select the "Entry editor" location
- Click Save
Next, click on actions -> Install to Space -> select your space and environment -> Continue
Now, it't time to create a new Content Type. From your Space, head over to Content model
and click on Add content type
Give it the name Custom Field Definitions
and the API identifier customFieldDefinitions
. Create it.
Next, add a title
field of Text
type.
This project was bootstrapped with Create Contentful App.
In the project directory, you can run:
Creates or updates your app definition in Contentful, and runs the app in development mode. Open your app to view it in the browser.
The page will reload if you make edits. You will also see any lint errors in the console.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes. Your app is ready to be deployed!
Uploads the build folder to contentful and creates a bundle that is automatically activated. The command guides you through the deployment process and asks for all required arguments. Read here for more information about the deployment process.
Similar to npm run upload
it will upload your app to contentful and activate it. The only difference is
that with this command all required arguments are read from the environment variables, for example when you add
the upload command to your CI pipeline.
For this command to work, the following environment variables must be set:
CONTENTFUL_ORG_ID
- The ID of your organizationCONTENTFUL_APP_DEF_ID
- The ID of the app to which to add the bundleCONTENTFUL_ACCESS_TOKEN
- A personal access token
To make your app look and feel like Contentful use the following libraries:
- Forma 36 – Contentful's design system
- Contentful Field Editors – Contentful's field editor React components
In the default create contentful app output, a contentful management client is passed into each location. This can be used to interact with Contentful's management API. For example
// Use the client
cma.locale.getMany({}).then((locales) => console.log(locales))
Visit the contentful-management
documentation
to find out more.
Read more and check out the video on how to use the CLI.
Create Contentful App uses Create React App. You can learn more in the Create React App documentation and how to further customize your app.