From b4193361f69f9783e7b44003872bd3047753830d Mon Sep 17 00:00:00 2001 From: "LB (Ben Johnston)" Date: Sun, 12 Jul 2020 19:24:05 +1000 Subject: [PATCH] Update Readme - add section for frontend bash --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e729b90..a2202e6 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ CURRENT_UID=$(id -u):$(id -g) docker-compose -f docker-compose.yml -f docker-com What you can do --------------- -See a list of running containers +### See a list of running containers ```sh $ docker-compose ps @@ -67,18 +67,23 @@ docker-wagtail-develop_frontend_1 /bin/sh -c cp -r /node_mod ... Up docker-wagtail-develop_web_1 /bin/bash -c cd /code/wagt ... Up 0.0.0.0:8000->8000/tcp ``` -You can open a django shell session +### You can open a django shell session ```sh docker-compose exec web python manage.py shell ``` -You can open a shell on the web server +### You can open a shell on the web server ```sh docker-compose exec web bash ``` +### You can open a shell to work with the frontend code (Node/NPM) + +```sh +docker-compose exec frontend bash +``` Getting ready to contribute ---------------------------