Browse Source

Update ecosystem configuration to change server port from 3000 to 3002 for production and development environments

0es 4 months ago
parent
commit
753af5b633
1 changed files with 3 additions and 3 deletions
  1. 3 3
      ecosystem.config.js

+ 3 - 3
ecosystem.config.js

@@ -11,15 +11,15 @@ module.exports = {
       max_memory_restart: "500M",
       env: {
         NODE_ENV: "production",
-        PORT: 3000,
+        PORT: 3002,
       },
       env_development: {
         NODE_ENV: "development",
-        PORT: 3000,
+        PORT: 3002,
       },
       env_production: {
         NODE_ENV: "production",
-        PORT: 3000,
+        PORT: 3002,
       },
       error_file: "./logs/err.log",
       out_file: "./logs/out.log",