diff --git a/.gitignore b/.gitignore
index e42022be..d39222db 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,7 +3,6 @@ dist
.DS_Store
js/preload/_*.js
.idea/
-.vscode/
coverage/
npm-debug.log
DerivedData/
diff --git a/.run/corp.run.xml b/.run/corp.run.xml
new file mode 100644
index 00000000..bdf44214
--- /dev/null
+++ b/.run/corp.run.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.run/demo.run.xml b/.run/demo.run.xml
new file mode 100644
index 00000000..c21f7b44
--- /dev/null
+++ b/.run/demo.run.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.run/unit.run.xml b/.run/unit.run.xml
new file mode 100644
index 00000000..491f3c97
--- /dev/null
+++ b/.run/unit.run.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 00000000..579967e2
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,45 @@
+{
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "corp",
+ "type": "node",
+ "request": "launch",
+ "cwd": "${workspaceFolder}",
+ "runtimeExecutable": "${workspaceFolder}/node_modules/electron/dist/Electron.app/Contents/MacOS/Electron",
+ "windows": {
+ "runtimeExecutable": "${workspaceFolder}/node_modules/electron/dist/Electron.exe"
+ },
+ "args": [".", "--url=https://corporate.symphony.com"],
+ "env": {
+ "ELECTRON_DEBUGGING": "true",
+ "ELECTRON_DEV": "true"
+ },
+ "outputCapture": "std",
+ "sourceMaps": true,
+ "outFiles": [
+ "${workspaceFolder}/lib/**/*.js"
+ ]
+ },
+ {
+ "name": "corp",
+ "type": "node",
+ "request": "launch",
+ "cwd": "${workspaceFolder}",
+ "runtimeExecutable": "${workspaceFolder}/node_modules/electron/dist/Electron.app/Contents/MacOS/Electron",
+ "windows": {
+ "runtimeExecutable": "${workspaceFolder}/node_modules/electron/dist/Electron.exe"
+ },
+ "args": [".", "--url=${workspaceFolder}/src/demo/index.html"],
+ "env": {
+ "ELECTRON_DEBUGGING": "true",
+ "ELECTRON_DEV": "true"
+ },
+ "outputCapture": "std",
+ "sourceMaps": true,
+ "outFiles": [
+ "${workspaceFolder}/lib/**/*.js"
+ ]
+ }
+ ]
+}