lrf402788946 4 år sedan
förälder
incheckning
6fbc889a07
1 ändrade filer med 20 tillägg och 0 borttagningar
  1. 20 0
      config/config.prod.js

+ 20 - 0
config/config.prod.js

@@ -0,0 +1,20 @@
+'use strict';
+module.exports = () => {
+  const config = (exports = {});
+  config.cluster = {
+    listen: {
+      port: 11000,
+    },
+  };
+  config.mongoose = {
+    url: 'mongodb://localhost:27017/htyd',
+    options: {
+      user: 'admin',
+      pass: '111111',
+      authSource: 'admin',
+      useNewUrlParser: true,
+      useCreateIndex: true,
+    },
+  };
+
+};