diff --git a/docs/concepts/ui.rst b/docs/concepts/ui.rst
index ae7a88256..b8e923734 100644
--- a/docs/concepts/ui.rst
+++ b/docs/concepts/ui.rst
@@ -61,17 +61,9 @@ This will do the following:
3. Start the backend server
4. Start the frontend server
-This takes a bit of time! So be patient. The server will be running on port 3000 -- in the logs you'll see something like this:
+This takes a bit of time! So be patient. The server will be running on port 8242 -- in the logs you'll see something like this:
-.. code-block:: bash
-
- 2024-04-18 15:57:07 You can now view frontend in the browser.
- 2024-04-18 15:57:07
- 2024-04-18 15:57:07 Local: http://localhost:3000
- 2024-04-18 15:57:07 On Your Network: http://172.19.0.4:3000
-
-
-Then navigate to ``http://localhost:3000`` in your browser, and enter your email (this will be the username used within the app).
+Then navigate to ``http://localhost:8242`` in your browser, and enter your email (this will be the username used within the app).
Building the Docker Images locally
__________________________________
diff --git a/ui/backend/server/entrypoint.sh b/ui/backend/server/entrypoint.sh
index 8c298fa52..3a3329f1c 100755
--- a/ui/backend/server/entrypoint.sh
+++ b/ui/backend/server/entrypoint.sh
@@ -1,4 +1,4 @@
set -e
python manage.py migrate # Apply database migrations
-python manage.py runserver 0.0.0.0:8000 # Start the server
+python manage.py runserver 0.0.0.0:8241 # Start the server
diff --git a/ui/backend/server/server/default_views.py b/ui/backend/server/server/default_views.py
index 8ba688c18..531473234 100644
--- a/ui/backend/server/server/default_views.py
+++ b/ui/backend/server/server/default_views.py
@@ -9,6 +9,7 @@ def root_index(request) -> HttpResponse: