Commit 6815fadd authored by Lukas Eipert's avatar Lukas Eipert

Gitpod: Enable webpack dev server

We currently force the static webpack compilation in GitPod. This
behaviour is annoying if someone changes frontend assets, because all of
GitLab needs to be recompiled, which is time consuming.

This enables the normal webpack dev server, but with live reload
disabled. enabling live reload is being tracked here:
https://gitlab.com/gitlab-org/gitlab-development-kit/-/issues/1444
parent b798830c
......@@ -20,6 +20,8 @@ tasks:
gdk config set gitlab.rails.port 443
gdk config set gitlab.rails.https.enabled true
gdk config set webpack.host 127.0.0.1
gdk config set webpack.static false
gdk config set webpack.live_reload false
# make documentation builds available
gdk config set gitlab_docs.enabled true
# reconfigure GDK
......@@ -49,6 +51,8 @@ tasks:
gdk config set gitlab.rails.port 443
gdk config set gitlab.rails.https.enabled true
gdk config set webpack.host 127.0.0.1
gdk config set webpack.static false
gdk config set webpack.live_reload false
# reconfigure GDK
echo "$(date) – Reconfiguring GDK" | tee -a /workspace/startup.log
gdk reconfigure
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment