Initial source code import

This commit is contained in:
2022-02-13 06:31:11 +00:00
commit 5819796c82
26 changed files with 807 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
module.exports = {
apps: [{
name: 'PROJECT_NAME',
script: "./src/server.js",
instances: 1,
watch: false,
env_dev: {
NODE_ENV: 'development'
},
env_staging: {
NODE_ENV: 'staging'
},
env_production: {
NODE_ENV: 'production'
}
}],
};