Payload 3.0 BETA!
This BETA is rapidly evolving, you can report any bugs against the repo or in the dedicated channel in Discord.
Payload is running at /admin
/my-route contains an example of a custom route running the Local API.
The admin panel is running at: https://arctichunter.app/admin
You can use the Local API in your server components like this:
import { getPayload } from 'payload'
import configPromise from "@payload-config";
const payload = await getPayload({ config: configPromise })
const data = await payload.find({
collection: 'posts',
})