From 1ba431a9e29ac4f4bb03135f769f6a7640c4cc98 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Sun, 6 Mar 2022 02:08:29 -0800 Subject: [PATCH] Updated Developer's Guide (markdown) --- Developer's-Guide.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Developer's-Guide.md b/Developer's-Guide.md index 0eaf93f..9eed69f 100644 --- a/Developer's-Guide.md +++ b/Developer's-Guide.md @@ -63,6 +63,15 @@ If you're using PyCharm, you can configure the project to use your virtualenv in ### Windows terminal (using git-bash) +Every time you update the repo you should rebuild the front-end: + +``` +cd client +npm build +``` + +If you're not developing the front-end (or the API boundary) that's enough. Otherwise, see `client/README.md`. + Set up your virtual env (described above), activate your env, then: ```