2023-02-27 08:24:38 +00:00
|
|
|
module.exports = {
|
|
|
|
apps: [
|
|
|
|
{
|
|
|
|
script: 'npm run app',
|
2023-06-18 23:54:49 +00:00
|
|
|
name: "tt-app",
|
2023-02-27 08:24:38 +00:00
|
|
|
namespace: "thingtime"
|
2023-03-08 06:57:26 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
script: 'npm run api',
|
2023-06-18 23:54:49 +00:00
|
|
|
name: 'tt-api',
|
2023-03-08 06:57:26 +00:00
|
|
|
namespace: "thingtime",
|
|
|
|
watch: ['node', 'node/*/node_modules', 'node/**/node_modules', 'node/node_modules'],
|
|
|
|
ignore_watch: [],
|
|
|
|
},
|
2023-02-27 08:24:38 +00:00
|
|
|
],
|
|
|
|
};
|