forked from payloadcms/payload-3.0-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayload.config.ts
118 lines (112 loc) · 3.31 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
import path from 'path'
// import { postgresAdapter } from '@payloadcms/db-postgres'
import { en } from 'payload/i18n/en'
import {
AlignFeature,
BlockquoteFeature,
BlocksFeature,
BoldFeature,
ChecklistFeature,
HeadingFeature,
IndentFeature,
InlineCodeFeature,
ItalicFeature,
lexicalEditor,
LinkFeature,
OrderedListFeature,
ParagraphFeature,
RelationshipFeature,
UnorderedListFeature,
UploadFeature,
} from '@payloadcms/richtext-lexical'
import { mongooseAdapter } from '@payloadcms/db-mongodb'
import { buildConfig } from 'payload'
import sharp from 'sharp'
import { fileURLToPath } from 'url'
import Users from '@/collections/Users'
import Pages from '@/collections/Pages'
import TenantMainMenus from '@/collections/MainMenus'
import GlobalMainMenu from '@/globals/MainMenu'
import Media from '@/collections/Media'
import Features from '@/collections/Features'
import Tenants from '@/collections/Tenants'
import Roles from '@/collections/Roles'
import TenantRoles from '@/collections/TenantRoles'
const filename = fileURLToPath(import.meta.url)
const dirname = path.dirname(filename)
export default buildConfig({
//editor: slateEditor({}),
editor: lexicalEditor(),
collections: [Tenants, TenantRoles, Roles, Users, Pages, Media, TenantMainMenus, Features],
globals: [GlobalMainMenu],
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 || '',
}),
/**
* Payload can now accept specific translations from 'payload/i18n/en'
* This is completely optional and will default to English if not provided
*/
i18n: {
supportedLanguages: { en },
},
admin: {
autoLogin: {
email: 'super@payloadcms.com',
password: 'super',
prefillOnly: true,
},
components: {
beforeNavLinks: ['@/components/TenantSelector#TenantSelectorRSC'],
afterNavLinks: ['@/components/AfterNavLinks'],
views: {
CustomDefaultView: {
Component: '@/views/CustomDefault/index#CustomDefaultView',
path: '/custom-default-view',
},
CustomDashboardView: {
Component: '@/views/CustomDashboard/index#CustomDashboardView',
path: '/dashboard',
},
CustomStandaloneView: {
Component: '@/views/CustomStandaloneView#CustomStandaloneView',
path: '/custom-standalone',
},
MinimalCustomView: {
Component: '@/views/CustomMinimalRootView#CustomMinimalRootView',
path: '/custom-minimal',
},
},
},
},
async onInit(payload) {
const existingUsers = await payload.find({
collection: 'users',
limit: 1,
})
if (existingUsers.docs.length === 0) {
await payload.create({
collection: 'users',
data: {
email: 'dev@payloadcms.com',
password: 'test',
roles: ['admin'],
},
})
}
},
// 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,
})