From 1f300e0ca26285ef541dfa06e185213ba52afb29 Mon Sep 17 00:00:00 2001 From: duffn <3457341+duffn@users.noreply.github.com> Date: Sun, 5 Feb 2023 03:00:28 -0700 Subject: [PATCH] Add note about which service to request when running locally with Docker & Webpack or Gulp (#4130) * Add note about running Webpack locally with Docker * Add note about running Gulp locally with Docker --- docs/developing-locally-docker.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/developing-locally-docker.rst b/docs/developing-locally-docker.rst index a7d77e10..935e8602 100644 --- a/docs/developing-locally-docker.rst +++ b/docs/developing-locally-docker.rst @@ -213,6 +213,11 @@ By default, it's enabled both in local and production environments (``local.yml` .. _`Flower`: https://github.com/mher/flower +Using Webpack or Gulp +~~~~~~~~~~~~~~~~~~~~~ + +When using Webpack or Gulp as the ``frontend_pipeline`` option, you should access your application at the address of the ``node`` service in order to see your correct styles. This is http://localhost:3000 by default. When using any of the other ``frontend_pipeline`` options, you should use the address of the ``django`` service, http://localhost:8000. + Developing locally with HTTPS -----------------------------