Initial commit - Warme catering website

This commit is contained in:
Alex Polo
2025-10-28 23:22:33 +01:00
parent a8b85b58be
commit 4acfa6a213
49 changed files with 4154 additions and 2075 deletions

28
ecosystem.config.js Normal file
View File

@@ -0,0 +1,28 @@
module.exports = {
apps: [
{
name: 'warme',
script: 'server.mjs',
instances: 1,
exec_mode: 'cluster',
env: {
NODE_ENV: 'production',
PORT: 3000
},
env_development: {
NODE_ENV: 'development',
PORT: 3000
},
node_args: [
'--no-deprecation',
'--experimental-fetch'
],
error_file: 'logs/err.log',
out_file: 'logs/out.log',
time: true,
wait_ready: true,
listen_timeout: 10000,
kill_timeout: 5000
}
]
}