Move to Payload CMS #3
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "feat/payloadcms"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR moves to payload CMS
@ -0,0 +5,4 @@build:dockerfile: ./Dockerfileports:- "3010:3000"Should move to using env vars injected into this file rather than hard-coding ports, so we can use different ports in different envs without having to commit the file back to git.
Raised issue
@ -0,0 +1,100 @@import { Field } from "payload";Ideally all fields in this file should follow the optional params pattern.
Raised #5
@ -0,0 +9,4 @@continue;}for (const tag of JSON.parse(post.tags)) {Need to fix how tags are defined in Payload so we don't have to
JSON.parsethe value.Raised #6
@ -0,0 +1,126 @@// import basicPages from "./import/basic_pages_20260506-171319.json" with { type: "json" };When running
next build, this file was being built for some reason. Unsure why, though probably because tsconfig was picking it up...need to figure out a way to exclude it, and then I can uncomment the file.Raised #7