From 1cc53e17fb93ad6aa234f004b10f104529b78b54 Mon Sep 17 00:00:00 2001
From: acammies <acammies@redhat.com>
Date: Thu, 12 Apr 2018 16:51:40 +0200
Subject: [PATCH] renamed ci-cd file so testci command works

---
 server/config/environment/ci.js |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/server/config/environment/ci.js b/server/config/environment/ci.js
new file mode 100755
index 0000000..bba14bd
--- /dev/null
+++ b/server/config/environment/ci.js
@@ -0,0 +1,16 @@
+'use strict';
+
+// Test specific configuration
+// ===========================
+module.exports = {
+  // MongoDB connection options
+  //  TODO change this to the new service in the OpenShift namespace
+  mongo: {
+    uri: 'mongodb://username:password@' + process.env.MONGODB_SERVICE_HOST + ':' + process.env.MONGODB_SERVICE_PORT + '/todolist',
+  },
+  mocks: {
+    // api: true
+    api: false
+  },
+  seedDB: true
+};

--
Gitblit v1.9.3