From c307c9176c09205ce67d506c974f60b2aff848b1 Mon Sep 17 00:00:00 2001 From: Corey Peterson Date: Thu, 26 Oct 2023 15:32:15 -0400 Subject: [PATCH] Small update to README --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 610e0d3a5..e1402e526 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,11 @@ cd Materia/docker ./run_first.sh ``` -In a separate terminal window, run `yarn dev` to enable the webpack dev server and live reloading while making changes to JS and CSS assets. Materia is configured to run at `https://127.0.0.1` by default. +The `run_first.sh` script only has to be run once for initial setup. Afterwards, your local copy will persist in a docker volume unless you explicitly use `docker-compose down` or delete the volume manually. + +Use `docker-compose up` to run your local instance. The compose process must persist to keep the application alive. Materia is configured to run at `https://127.0.0.1` by default. + +In a separate terminal window, run `yarn dev` to enable the webpack dev server and live reloading while making changes to JS and CSS assets. Note that Materia uses a self-signed certificate to facilitate https traffic locally. Your browser may require security exceptions for both `127.0.0.1:443` and `127.0.0.1:8008`.