mirror of
https://github.com/artiemis/artemis.js.git
synced 2026-02-14 10:21:54 +00:00
15 lines
267 B
JavaScript
15 lines
267 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: "artemis",
|
|
interpreter: "bun",
|
|
script: "src/index.ts",
|
|
time: true,
|
|
env: {
|
|
NODE_ENV: "production",
|
|
PATH: `${process.env.HOME}/.bun/bin:${process.env.PATH}`,
|
|
},
|
|
},
|
|
],
|
|
};
|