mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 18:44:16 +00:00
55 lines
1.4 KiB
JavaScript
55 lines
1.4 KiB
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: "main_api",
|
|
script: "./infisical-run.sh",
|
|
instances: "max",
|
|
exec_mode: "cluster",
|
|
env: {
|
|
"NODE_ENV": "production",
|
|
},
|
|
cwd: "./packages/server"
|
|
},
|
|
{
|
|
name: "music_api",
|
|
script: "./infisical-run.sh",
|
|
instances: "max",
|
|
exec_mode: "cluster",
|
|
env: {
|
|
"NODE_ENV": "production",
|
|
},
|
|
cwd: "./packages/music_server"
|
|
},
|
|
{
|
|
name: "file_api",
|
|
script: "./infisical-run.sh",
|
|
instances: "max",
|
|
exec_mode: "cluster",
|
|
env: {
|
|
"NODE_ENV": "production",
|
|
},
|
|
cwd: "./packages/file_server"
|
|
},
|
|
{
|
|
name: "marketplace_api",
|
|
script: "./infisical-run.sh",
|
|
instances: "max",
|
|
exec_mode: "cluster",
|
|
env: {
|
|
"NODE_ENV": "production",
|
|
},
|
|
cwd: "./packages/marketplace_server"
|
|
},
|
|
{
|
|
name: "chat_api",
|
|
script: "./infisical-run.sh",
|
|
instances: "max",
|
|
exec_mode: "cluster",
|
|
env: {
|
|
"NODE_ENV": "production",
|
|
},
|
|
cwd: "./packages/chat_server"
|
|
}
|
|
],
|
|
}
|