36 lines
893 B
TypeScript
36 lines
893 B
TypeScript
import dotenv from 'dotenv'
|
|
import path from 'path'
|
|
|
|
// This file is used to replace `server.ts` when ejecting i.e. `yarn eject`
|
|
// See `../eject.ts` for exact details on how this file is used
|
|
// See `./README.md#eject` for more information
|
|
|
|
dotenv.config({
|
|
path: path.resolve(__dirname, '../.env'),
|
|
})
|
|
|
|
import express from 'express'
|
|
|
|
import { getPayloadClient } from './getPayload'
|
|
|
|
const app = express()
|
|
const PORT = process.env.PORT || 3000
|
|
|
|
const start = async (): Promise<void> => {
|
|
const payload = await getPayloadClient({
|
|
initOptions: {
|
|
express: app,
|
|
onInit: async (newPayload) => {
|
|
newPayload.logger.info(`Payload Admin URL: ${newPayload.getAdminURL()}`)
|
|
},
|
|
},
|
|
seed: process.env.PAYLOAD_PUBLIC_SEED === 'true',
|
|
})
|
|
|
|
app.listen(PORT, async () => {
|
|
payload.logger.info(`App URL: ${process.env.PAYLOAD_PUBLIC_SERVER_URL}`)
|
|
})
|
|
}
|
|
|
|
start()
|