diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d5f838709295e8c409edf2f7d92e5bc629d10f56..98671277b9413a2d3b595111a462b58a66057090 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -6,6 +6,10 @@ stages:
   - build
   - dockerize
 
+
+before_script:
+- apk add --update git
+
 install-dependencies:
   stage: setup
   interruptible: true
@@ -20,6 +24,7 @@ install-dependencies:
       - node_modules
       - .yarn
   script:
+    - apk --no-cache add git
     - yarn install --pure-lockfile --cache-folder .yarn
   artifacts:
     paths:
@@ -40,7 +45,7 @@ test:
   stage: test
   extends: .distributed
   script:
-    - yarn nx affected --base=HEAD~1 --target=test --parallel --max-parallel=2
+    - yarn nx affected --base=HEAD~1 --target=test --parallel --max-parallel=4
 
 build:
   stage: build
diff --git a/README.md b/README.md
index ebcaddb86091a83d3a8e2df8a5d1defc53f03b89..ca4510171dcf47798262c1568dbd6ee2e993c729 100644
--- a/README.md
+++ b/README.md
@@ -26,4 +26,9 @@ Due to the way auth works (using a sameSite cookie), the procedure for running l
 
 ## Running Locally
 
-To run the application using SSL (with these keys) simply run `nx run web-graphpolaris:dev`, or `yarn nx run web-graphpolaris:dev` if `nx` is not installed globally. This should open a window to `https://local.graphpolaris.com:4200/` automatically.
+To run the application using SSL (with these keys) simply run `nx run web-graphpolaris:dev`, or `yarn nx run web-graphpolaris:dev` if `nx` is not installed globally. This should open a window to `https://local.datastrophe.science.uu.nl:4200/` automatically.
+
+
+## Running Storybook.js
+
+To run the dev storybook (implementing visualizations) simply run `nx run web-graphpolaris:storybook`, or `yarn nx run web-graphpolaris:storybook` if `nx` is not installed globally.