From f1c120cbb21150c52e2c7b9e2648c42b49aec148 Mon Sep 17 00:00:00 2001 From: Jason Kulatunga Date: Fri, 22 Dec 2023 17:35:41 -0700 Subject: [PATCH] Update CONTRIBUTING.md (#371) --- CONTRIBUTING.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b6acbacd..d91e2655 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -78,14 +78,11 @@ Next we'll start the processes described above: ```bash # In terminal #1, run the following -cd frontend -yarn install -yarn dist -- -c [sandbox|prod] -# eg. yarn dist -- -c prod +make build-frontend-[sandbox|prod] +# eg. make build-frontend-sandbox # In terminal #2, run the following -go mod vendor -go run backend/cmd/fasten/fasten.go start --config ./config.dev.yaml --debug +make serve-backend ```