mirror of
https://github.com/tdurieux/anonymous_github.git
synced 2026-02-13 02:42:45 +00:00
22 lines
402 B
JavaScript
22 lines
402 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: "AnonymousGitHub",
|
|
script: "./index.ts",
|
|
exec_mode: "fork",
|
|
watch: true,
|
|
ignore_watch: [
|
|
"node_modules",
|
|
"repositories",
|
|
"repo",
|
|
"public",
|
|
".git",
|
|
"db_backups",
|
|
"build",
|
|
],
|
|
interpreter: "node",
|
|
interpreter_args: "--require ts-node/register",
|
|
},
|
|
],
|
|
};
|