examples/form-builder/README.md
The Payload Form Builder Example demonstrates how to implement the official Form Builder Plugin in Payload.
IMPORTANT—This example includes a fully integrated Next.js App Router front-end that runs on the same server as Payload.
npx create-payload-app --example form-buildercp .env.example .env to copy the example environment variables
Ensure MongoDB is running and DATABASE_URL points to it (for example mongodb://127.0.0.1/payload-example-form-builder)
pnpm dev, yarn dev or npm run dev to start the server
y when prompted to seed the databaseopen http://localhost:3000 to access the home page
open http://localhost:3000/admin to access the admin panel
[email protected] and password demoThat's it! Changes made in ./src will be
The Form Builder Plugin automatically adds the forms and formSubmissions collections to your config which your front-end can use to query forms and submit form data. You can embed forms into layout building blocks by referring a forms document in a relationship field.
See the official Form Builder Plugin for full details.
To spin up this example locally, follow the Quick Start.
On boot, a seed script is included to scaffold a basic database for you to use as an example. You can remove pnpm seed from the dev script in the package.json to prevent this behavior. You can also freshly seed your project at any time by running pnpm seed. This seed creates a user with email [email protected] and password demo along with a home page and an example page with two versions, one published and the other draft.
NOTICE: seeding the database is destructive because it drops your current database to populate a fresh one from the seed template. Only run this command if you are starting a new project or can afford to lose your current data.
To run Payload in production, you need to build and serve the Admin panel. To do so, follow these steps:
next build script by running pnpm build or npm run build in your project root. This creates a .next directory with a production-ready admin bundle.pnpm start or npm run start to run Node in production and serve Payload from the .build directory.The easiest way to deploy your project is to use Payload Cloud, a one-click hosting solution to deploy production-ready instances of your Payload apps directly from your GitHub repo. You can also choose to self-host your app, check out the Deployment docs for more details.
If you have any issues or questions, reach out to us on Discord or start a GitHub discussion.