14 lines
203 B
JavaScript
14 lines
203 B
JavaScript
|
module.exports = {
|
||
|
apps: [
|
||
|
{
|
||
|
name: "frontend-transcription",
|
||
|
script: "npm",
|
||
|
args: "run start",
|
||
|
env: {
|
||
|
PORT: 9008,
|
||
|
NODE_ENV: "production"
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|