39 lines
899 B
TypeScript
39 lines
899 B
TypeScript
import { buildConfigWithDefaults } from '../buildConfigWithDefaults';
|
|
import { PostsCollection, postsSlug } from './collections/Posts';
|
|
import { MenuGlobal } from './globals/Menu';
|
|
import { devUser } from '../credentials';
|
|
import { MediaCollection } from './collections/Media';
|
|
|
|
export default buildConfigWithDefaults({
|
|
// ...extend config here
|
|
collections: [
|
|
PostsCollection,
|
|
MediaCollection,
|
|
// ...add more collections here
|
|
],
|
|
globals: [
|
|
MenuGlobal,
|
|
// ...add more globals here
|
|
],
|
|
graphQL: {
|
|
schemaOutputFile: './test/_community/schema.graphql',
|
|
},
|
|
|
|
onInit: async (payload) => {
|
|
await payload.create({
|
|
collection: 'users',
|
|
data: {
|
|
email: devUser.email,
|
|
password: devUser.password,
|
|
},
|
|
});
|
|
|
|
await payload.create({
|
|
collection: postsSlug,
|
|
data: {
|
|
text: 'example post',
|
|
},
|
|
});
|
|
},
|
|
});
|