forked from payloadcms/payload-3.0-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
payload.config.ts
103 lines (99 loc) · 2.26 KB
/
payload.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import path from "path";
// import { postgresAdapter } from '@payloadcms/db-postgres'
import {
AlignFeature,
BlockQuoteFeature,
BlocksFeature,
BoldFeature,
CheckListFeature,
HeadingFeature,
IndentFeature,
InlineCodeFeature,
ItalicFeature,
lexicalEditor,
LinkFeature,
OrderedListFeature,
ParagraphFeature,
RelationshipFeature,
UnorderedListFeature,
UploadFeature,
} from "@payloadcms/richtext-lexical";
//import { slateEditor } from '@payloadcms/richtext-slate'
import { mongooseAdapter } from "@payloadcms/db-mongodb";
import { buildConfig } from "payload/config";
import sharp from "sharp";
import { fileURLToPath } from "url";
const filename = fileURLToPath(import.meta.url);
const dirname = path.dirname(filename);
export default buildConfig({
//editor: slateEditor({}),
editor: lexicalEditor(),
collections: [
{
slug: "pages",
admin: {
useAsTitle: "title",
},
fields: [
{
name: "title",
type: "text",
},
{
name: "content",
type: "richText",
},
],
},
{
slug: "media",
upload: true,
fields: [
{
name: "text",
type: "text",
},
],
},
],
secret: process.env.PAYLOAD_SECRET || "",
typescript: {
outputFile: path.resolve(dirname, "payload-types.ts"),
},
// db: postgresAdapter({
// pool: {
// connectionString: process.env.POSTGRES_URI || ''
// }
// }),
db: mongooseAdapter({
url: process.env.MONGODB_URI || "",
}),
admin: {
autoLogin: {
email: "[email protected]",
password: "test",
prefillOnly: true,
},
},
async onInit(payload) {
const existingUsers = await payload.find({
collection: "users",
limit: 1,
});
if (existingUsers.docs.length === 0) {
await payload.create({
collection: "users",
data: {
email: "[email protected]",
password: "test",
},
});
}
},
// Sharp is now an optional dependency -
// if you want to resize images, crop, set focal point, etc.
// make sure to install it and pass it to the config.
// This is temporary - we may make an adapter pattern
// for this before reaching 3.0 stable
sharp,
});