diff --git a/Distributed-Documentation.md b/Distributed-Documentation.md
index 1b1153ce821dab4cda4fe154110f1abbf8bb8b51..4f5fb78dda33ca2346061e8c740f4610788098af 100644
--- a/Distributed-Documentation.md
+++ b/Distributed-Documentation.md
@@ -3,11 +3,11 @@ SUMMA-Distributed is an actor program that can compute the solution to HRUs usin
 To achieve this we had to introduce two new actors into SUMMA-Actors the client actor and the server actor. These actors in combintaiton can 
 compute the solution to HRUs.
 
-To use distributed mode. Set the distributed 
-
+To use distributed mode. Set the "distributed-mode" setting to true in the Summa_Actors_Settings.json file.
 
 ## SUMMA-Server
-
+Run the server with:
+ - summaMain -s -c /path/to/config
 
 ## SUMMA-Client
-
+Run the cleint with
diff --git a/Summa-Actors.code-workspace b/Summa-Actors.code-workspace
new file mode 100644
index 0000000000000000000000000000000000000000..8b3da04d90a705d36a03734e56eaa9750d53001b
--- /dev/null
+++ b/Summa-Actors.code-workspace
@@ -0,0 +1,11 @@
+{
+	"folders": [
+		{
+			"path": "."
+		},
+		{
+			"path": "../gladwell"
+		}
+	],
+	"settings": {}
+}
\ No newline at end of file
diff --git a/config/create_summa_actors_config.py b/config/create_summa_actors_config.py
index e2580e7d51ae24b796087734ca65653ac3a6596e..5e38881a9f3084d09ce3a0f9a2114ff61b93b1d7 100644
--- a/config/create_summa_actors_config.py
+++ b/config/create_summa_actors_config.py
@@ -30,7 +30,29 @@ def file_access_actor_settings():
 
 def job_actor_settings():
     job_actor_settings = {
-        "FileManagerPath" : "",
+        "FileManagerPath"       : "",
+        "controlVersion"        : "",
+        "simStartTime"          : "",
+        "simEndTime"            : "",
+        "tmZoneInfo"            : "",
+        "settingsPath"          : "",
+        "forcingPath"           : "",
+        "outputPath"            : "",
+        "forcingFreq"           : "",
+        "forcingStart"          : "",
+        "decisionsFile"         : "",
+        "outputControlFile"     : "",
+        "globalHruParamFile"    : "",
+        "globalGruParamFile"    : "",
+        "attributeFile"         : "",
+        "trialParamFile"        : "",
+        "forcingListFile"       : "",
+        "initConditionFile"     : "",
+        "outFilePrefix"         : "",
+        "vegTableFile"          : "",
+        "soilTableFile"         : "",
+        "generalTableFile"      : "",
+        "noahmpTableFile"       : "",
         "outputCSV": False,
         "csvPath": ""
     }
diff --git a/utils/containers/docker/launch_docker_container.sh b/utils/containers/docker/launch_docker_container.sh
index 0bf72c7c341e6d854dc6fd4c2e26e67a8b87269e..94723c4adea29c655bfeedd9e09f039c28999318 100755
--- a/utils/containers/docker/launch_docker_container.sh
+++ b/utils/containers/docker/launch_docker_container.sh
@@ -1,9 +1,6 @@
 #! /bin/bash
 
-export PROJECT_DIR=/Users/kyleklenk/SUMMA-Projects/Summa-Actors
-export NA_TEST=/home/local/kck540/NA_Summa_Test
-export SUMMA=/Users/kyleklenk/SUMMA-Projects/summa
+export PROJECT_DIR=/home/local/kck540/SUMMA-Projects/Summa-Distributed/Summa-Actors
+export GLADWELL=/gladwell
 docker run -d -it --name SUMMA-Actors --mount type=bind,source=${PROJECT_DIR},target=/Summa-Actors \
-    --mount type=bind,source=${SUMMA},target=/SUMMA summa-actors:latest
-    # --mount type=bind,source=${NA_TEST},target=/NA_Test \
-    # \
\ No newline at end of file
+    --mount type=bind,source=${GLADWELL},target=/gladwell summa-actors:latest
\ No newline at end of file