14 lines
186 B
JavaScript
14 lines
186 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: "canary",
|
|
script: "node.js",
|
|
cwd: "./-/",
|
|
args: "port=9090",
|
|
autorestart: true,
|
|
env: {
|
|
"TELEGRAM_TOKEN": ""
|
|
},
|
|
},
|
|
],
|
|
};
|