This is the repository for Payload's official website. It was built completely in public using Payload itself, more on that here.
This site showcases lots of cool stuff like how to use Next.js 15 + Payload's local API to its fullest extent, how to build a super dynamic light / dark mode into a Next site without any first-load flickering, how to render remotely stored docs from MDX to Next.js pages using just Payload (no external libraries), how to use Stripe to build a custom SaaS integration, and much more.
- Payload (obviously)
- TypeScript
- Next.js 15 and its new App Router
- SCSS Modules
- MDX for docs, using the Lexical MDX Converter
- GraphQL for Payload Cloud
- Stripe for Payload Cloud
Payload is leveraged for everything that this site does, outside of its documentation which is all stored as Markdown in the Payload repo on GitHub. Both the CMS and the website frontend are found within the same app folder.
This repo contains the source code for Payload Cloud. This is a one-click integration to deploy production-ready instances of your Payload apps directly from your GitHub repo, read the blog post to get all the details. The entire frontend of Payload Cloud has been built in public and is included within this repo 😱.
To get started with this repo locally, follow the steps below:
- Clone the repo
pnpm i
- Run
cp .env.example .env
to create an.env
file - Fill out the values within your new
.env
, corresponding to your own environment - Run
pnpm dev
- Bam
The locally running app must run on local.payloadcms.com:3000
because of http-only cookie policies and how the GitHub App redirects the user back to the site after authenticating. To do this, you'll need to add the following to your hosts file:
127.0.0.1 local.payloadcms.com
On Mac you can find the hosts file at
/etc/hosts
. On Windows, it's atC:\Windows\System32\drivers\etc\hosts
:
The documentation for this site is stored in the Payload repo as Markdown files. These are fetched when you press the "Sync Docs" button in the CMS. Pressing that button does the following:
- Docs are pulled from the Payload repo on GitHub.
- The docs are converted from MDX to Lexical and stored in the CMS.
- The frontend docs pages are revalidated.
- Visiting the docs pages will pull the latest docs from the CMS, and render those lexical nodes to JSX.
By default, the docs are pulled from the main
branch of the Payload repo on GitHub. You can load the docs for a different branch by opening the /docs/dynamic/ route on the website. This will dynamically load them every time you visit the page, without needing to sync them in the CMS.
Example:
- This pulls from the main branch: https://payloadcms.com/docs/getting-started/concepts
- This pulls from the feat/myfeature branch: https://payloadcms.com/docs/dynamic/getting-started/concepts?branch=feat/myfeature
In order to edit docs for that branch without touching markdown files, you can use the branch selector in the CMS to select the branch you want to work on. After making changes and saving the document, the lexical docs will be converted to MDX and pushed to the selected branch on GitHub.
You will need to set the following environment variables to work with the GitHub sync:
// .env
# For reading from GitHub
GITHUB_ACCESS_TOKEN=ghp_
GITHUB_CLIENT_SECRET=
# For writing to GitHub - you can run the https://github.com/payloadcms/gh-commit repo locally
COMMIT_DOCS_API_URL=
COMMIT_DOCS_API_KEY=
If you have the docs stored locally as markdown files and would like to preview them in the website, you can use the /docs/local/ route in the website. First, you need to set the DOCS_DIR_V3
environment variable to point to your local docs
directory.
// .env
DOCS_DIR_V3=/documents/github/payload/docs
Then, just open the /docs/local/
route: http://localhost:3000/docs/local/getting-started/concepts.
Every time you make a change to the markdown files, just reload the page to see the changes reflected. The local MDX files are read, automatically converted to lexical on-the-fly, and rendered in the website. This process will not make any changes to the database.
You can also specify a beta
version and legacy
version to render different versions of the docs:
- Set the environment variable
NEXT_PUBLIC_ENABLE_BETA_DOCS
totrue
to enable the beta docs. - Specify a branch, commit, or tag with
NEXT_PUBLIC_BETA_DOCS_REF
. The default for the beta docs isbeta
. - Set the environment variable
NEXT_PUBLIC_ENABLE_LEGACY_DOCS
totrue
to enable the legacy docs. - Specify a branch, commit, or tag with
NEXT_PUBLIC_LEGACY_DOCS_REF
. The default for the legacy docs isnull
, and will fallback to themain
branch.
The Payload website is available as open source under the terms of the MIT license.