Preparation to bower release
diff --git a/dev/main.js b/dev/main.js
new file mode 100644
index 0000000..e858499
--- /dev/null
+++ b/dev/main.js
@@ -0,0 +1,30 @@
+/* eslint-disable angular/ng_module_name */
+(function () {
+  'use strict';
+  console.log('hello!');
+  angular.module('ngXosLib', ['xos.helpers'])
+  .run(function(){
+    console.info('Dev Environment ready!')
+  })
+  .controller('testCtrl', function(){
+
+    // TODO add styles
+
+    this.config = {
+      columns: [
+        {
+          label: '#',
+          prop: 'id',
+        },
+        {
+          label: 'Name:',
+          prop: 'name',
+        }
+      ]
+    };
+
+    this.data = [
+      {id: 1, name: 'Jhon'}
+    ];
+  });
+})();
\ No newline at end of file