Files
Marwin Hormiz e34cbc3526 examples: add Dockerfile to Remix (#11429)
Remix application was missing a Dockerfile while Payload had one. This
also takes issue
[#11276](https://github.com/payloadcms/payload/issues/11276) into
consideration to avoid CPU issues.

---------

Co-authored-by: Marwin Hormiz <marwinhormiz@duobit.se>
2026-04-10 13:37:20 +01:00
..
…

Payload Payload + Remix Example

This example is built based on an old version of the website template.

The objective is to show to use the Local API with Remix framework. This is achieved through monorepo with 2 apps: payload - Next.js admin panel and definition of the Payload config. website - Remix website, imports the payload config from payload

## Setup

  1. cp ./payload/.env.example ./payload./.env (copy the payload .env.example file to .env)
  2. cp ./website/.env.example ./website/.env (copy the website .env.example file to .env)
  3. pnpm install
  4. pnpm run dev:payload
  5. pnpm run dev:website (in a separate terminal)