Added GUI Environment
diff --git a/xos-apps/auto-scale/gui/src/js/autoscaling_details.js b/xos-apps/auto-scale/gui/src/js/autoscaling_details.js
new file mode 100644
index 0000000..f6fb4d6
--- /dev/null
+++ b/xos-apps/auto-scale/gui/src/js/autoscaling_details.js
@@ -0,0 +1,13 @@
+angular.module('autoscaling')
+.directive('serviceContainer', function(lodash){
+  return {
+    restrict: 'E',
+    scope: {},
+    bindToController: true,
+    controllerAs: 'vm',
+    templateUrl: 'templates/service-container.tpl.html',
+    controller: () => {
+
+    }
+  };
+});