Attempt at docker building
This commit is contained in:
@ -17,7 +17,7 @@
|
||||
"dependencies": {
|
||||
"dotenv": "^8.2.0",
|
||||
"express": "^4.17.1",
|
||||
"payload": "latest",
|
||||
"payload": "1.12.0",
|
||||
"@payloadcms/plugin-seo": "latest",
|
||||
"@payloadcms/plugin-cloud-storage": "latest",
|
||||
"@aws-sdk/client-s3": "latest",
|
||||
|
||||
@ -8,6 +8,9 @@ app.get("/", (_, res) => {
|
||||
res.redirect("/admin");
|
||||
});
|
||||
|
||||
const PORT = process.env.PAYLOAD_PORT ?? 3000,
|
||||
const HOST = process.env.PAYLOAD_ADDRESS ?? 'localhost',
|
||||
|
||||
const start = async () => {
|
||||
// Initialize Payload
|
||||
await payload.init({
|
||||
@ -24,7 +27,13 @@ const start = async () => {
|
||||
|
||||
// Add your own express routes here
|
||||
|
||||
app.listen(process.env.PAYLOAD_PORT ?? 3000);
|
||||
app.listen(
|
||||
PORT,
|
||||
HOST,
|
||||
() => {
|
||||
console.log(`Server running at http://${HOST}:${PORT}/`);
|
||||
}
|
||||
);
|
||||
};
|
||||
|
||||
start();
|
||||
|
||||
Reference in New Issue
Block a user