mirror of
https://github.com/donpat1to/Schichtenplaner.git
synced 2025-12-01 06:55:45 +01:00
17 lines
370 B
JavaScript
17 lines
370 B
JavaScript
// ecosystem.config.cjs
|
|
module.exports = {
|
|
apps: [{
|
|
name: 'schichtplan-app',
|
|
script: './dist/server.js',
|
|
instances: 1,
|
|
env: {
|
|
NODE_ENV: 'production',
|
|
PORT: 3002,
|
|
FRONTEND_BUILD_PATH: './frontend-build'
|
|
},
|
|
error_file: './logs/err.log',
|
|
out_file: './logs/out.log',
|
|
log_file: './logs/combined.log',
|
|
time: true
|
|
}]
|
|
}; |