Initial commit

Change-Id: Ifc297dd3b5a52bb42d79a08bac4d05c2400ae779
diff --git a/routes/index.js b/routes/index.js
new file mode 100644
index 0000000..7ddb40e
--- /dev/null
+++ b/routes/index.js
@@ -0,0 +1,16 @@
+var express = require('express');
+var router = express.Router();
+var path = require('path');
+
+// /* GET home page. */
+// router.get('/', function (req, res, next) {
+//     console.log("Request get index");
+//     res.render('index', { title: 'Express' });
+// });
+
+/* GET React App */
+router.get(['/app', '/app/*'], function (req, res, next) {
+    res.sendFile(path.join(__dirname, '../public', 'index.html'));
+});
+
+module.exports = router;