mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
14 lines
291 B
JavaScript
14 lines
291 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: "knightcrawler",
|
|
script: "npm start",
|
|
cwd: "/app",
|
|
watch: ["./dist/index.cjs"],
|
|
autorestart: true,
|
|
env: {
|
|
...process.env
|
|
},
|
|
},
|
|
],
|
|
}; |