jobsdone | 1 year ago | on: PayloadCMS: Open-Source, Fullstack Next.js Framework
jobsdone's comments
jobsdone | 2 years ago | on: Payload 2.0 released, TypeScript headless CMS and app framework
On the other DBs topic, SQLite is just around the corner ;)
So glad you and others are liking the direction. It is true what they say, listen to your users.
jobsdone | 2 years ago | on: The Future of Headless CMS
This ultimately is bad for the client and developers who have the resposibility of learning a dizzying amount of tooling just to make something that works. It shouldn't take a computer scientist to build a website.
To combat this we're excited to release a new package that simplifies your stack into a single repo with Next.js and Payload that can be run serverlessly. The beauty here is that there is very little devOps, generated typescript types unified across frontend and back, and the elimination of HTTP API calls between application and backend. https://github.com/payloadcms/next-payload
My co-founder of Payload, James Mikrut is doing a livestream with Vercel's Steven Tey to shed some more light on what we're seeing: https://www.youtube.com/watch?v=TWkR-OPXKRU
jobsdone | 3 years ago | on: Show HN: Self-hosted CMS on serverless Cloudflare
jobsdone | 3 years ago | on: Launch HN: Payload (YC S22) – Headless CMS for Developers
That is a harder situation, I think my approach here would be to route requests to the api version on a separate new instance, `v1.example.com/api`, `v2.example.com/api` for example. Any way I can think of handling this scenario in the application layer gets messy right away, but maybe there is a good way I haven't thought about yet. I'll keep this in mind in case as a future feature we could build in or make turn into a plugin perhaps.
jobsdone | 3 years ago | on: Launch HN: Payload (YC S22) – Headless CMS for Developers
I haven't done the same exploration for Rails gems. I'd be curious, which have you have used that take care of the CMS and admin panel requirements?
jobsdone | 3 years ago | on: Launch HN: Payload (YC S22) – Headless CMS for Developers
I guess we'll have to update those screenshots! :)
jobsdone | 3 years ago | on: Launch HN: Payload (YC S22) – Headless CMS for Developers
> allow me to create a localized content (you seem to have this covered).
Localization can be done on any field(s), at any point in your content structure .
> a good story for blobs (images, video, PDFs, etc).
You can have as many upload collections and set mimetypes. Payload saves to a local directory in your Node app or you can use our cloud storage plugin for S3/Azure/GCP.
> integrated full text search (I do not want to set up elastic search when using a headless CMS saas).
Payload has a lot different querying options and you can get creative with relating content to one searchable collection, but we still recommend a proper search tool when you have complex filtering and searching requirements or massive collections which are better optimized elsewhere.
> fully spec'd API (when I have defined a content type, I need some API spec to be updated; openAPIv3 was good, GraphQL is better: so I can generate a client lib).
Along with REST endpoints, Payload opens up a full GraphQL implementation with complete schemas based on the config you provide for queries and mutations. It also can write these out to a graphql.schema file using a built-in command.
> some mechanism to know the API was updated (so I can show the "a new version is available, the version you run may no longer work in certain cases, please click here to use the newest version" message somewhere).
This would be up to your implementation of Payload and your frontend. You could make a field for publishDate or increment a version number to handle this scenario and query and compare based on that.
> a story on content blocks (say: text, image, text, quote, text, author card) vs embeddable content in text blocks (say: a text block with a way to embed images/etc into it); the latter is really hard to do right imho.
Payload's richtext field is capable of embedding relationships and file uploads so you can do the hard thing or you do predefined blocks for your content editors to use like you said too.
We really put in the work, I'd love to hear from you if you try it out.
jobsdone | 3 years ago | on: Launch HN: Payload (YC S22) – Headless CMS for Developers
It could simplify deployment and have some other benefits, but we always go back to the fact that even with a sleak serverless architecture, you're still hitting a centralized DB. It really weakens the argument for going serverless.
jobsdone | 3 years ago | on: Launch HN: Payload (YC S22) – Headless CMS for Developers
jobsdone | 3 years ago | on: Launch HN: Payload (YC S22) – Headless CMS for Developers
jobsdone | 3 years ago | on: Launch HN: Payload (YC S22) – Headless CMS for Developers
The tedium of development in my experience is building CRUD—whether it is for a SaaS app or anything else. When you're rolling a project using a framework you've got to set up a database, write the API logic and build an admin UI to manage that data. It is complicated and time consuming work even with a great framework. To be able to skip all that is a massive advantage.
I personally would not build a SaaS app on Wordpress and ACF, but I would use Payload to build just about any custom business app.
jobsdone | 3 years ago | on: Launch HN: Payload (YC S22) – Headless CMS for Developers
You'd be interested in the example repo: https://github.com/payloadcms/nextjs-custom-server
The example is set up to manage Pages, but with a few tweaks you'd be able to manage blogs posts instead.
jobsdone | 3 years ago | on: Launch HN: Payload (YC S22) – Headless CMS for Developers
I ran a team at a weekend hackathon event for non-profits. We needed to finish building their new site on the latest version of Drupal. I had SEVEN devs working on a 5 page brochure site with a page to manage events and we couldn't get it done! I felt terrible leaving it incomplete at the event, but honestly, with Drupal as the tech stack—my hands were tied. Luckily the developer who started the work was able to finish it a few months later.
To do it all over again, I would have convinced them to throw away what they had and use a different platform. If we used any other tech stack, we could have finished and launched the site during the event.
That was the first, and last time I touched Drupal.
jobsdone | 3 years ago | on: Launch HN: Payload (YC S22) – Headless CMS for Developers
Prior to building Payload I was a consulting full-stack engineer. I have built large web apps using Laravel and have rolled my own admin UI a dozen times and I've worked within the official 'Nova' package too. Laravel had a few open source options which I didn't try as it seemed like support was better with Nova. The project I built went okay, but it was a ton of work over what you can do with Payload.
To add a field you have to: 1) create a migration to add a column to the DB 2) add your field to the model 3) define the field again in the nova "resource"
In Payload you do all of this in one place. Every field you define will have the proper DB schema, API and admin UI in a streamlined way without having to touch your app in a bunch of places.
Two other things that made me scratch my head while using Nova specifically. The first, I had to cobble together plugins for building blocks for component based field defintions and image uploads, but these didn't play well together at all. How could image uploads and blocks not be built-in core features? The other pain point with Nova is that it isn't refined at all, and they say it shouldn't be used for customer facing UIs.
Do you have a favorite framework/package you would suggest for mananging admin UIs and APIs that do a great job?
jobsdone | 3 years ago | on: Payload Launches 1.0
We're striving to make the developer experience the best of any tools around. Would love to hear any and all feedback!
jobsdone | 4 years ago | on: Payload CMS Roadmap Released
When we started this journey in 2018, there wasn't a headless CMS out there that passed our standards for features, quality, ease-of-use and extensibility. We were still building Wordpress sites and bespoke apps on different frameworks because no CMS had it all. Now we have customers discovering that Payload is perfect for SaaS apps, eCommerce sites and many other needs.
It has been a journey and as the roadmap shows, the grind will continue. Thanks for checking us out and let us know what you think in the comments. :)