- point MySQL and Whisper settings to the VM - add VM MySQL bootstrap scripts and docs - allow LAN Vite origins for CORS - fix Express 5 validation assignment crash - allow login with username or email - prevent recursive auth refresh retries
15 lines
230 B
JavaScript
15 lines
230 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: "orphion-api",
|
|
cwd: "./backend",
|
|
script: "src/index.js",
|
|
instances: 1,
|
|
exec_mode: "fork",
|
|
env: {
|
|
NODE_ENV: "production",
|
|
},
|
|
},
|
|
],
|
|
};
|