From a988754129edbe516f15de6477415b2e50b9ae65 Mon Sep 17 00:00:00 2001 From: Chaim Lev-Ari Date: Wed, 24 May 2023 13:00:16 +0700 Subject: [PATCH] update contributing guidelines to use makefile --- contribute/build/README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/contribute/build/README.md b/contribute/build/README.md index f6385209..135482f9 100644 --- a/contribute/build/README.md +++ b/contribute/build/README.md @@ -29,19 +29,21 @@ cd portainer Install the development dependencies: ``` -yarn +make deps-all ``` And finally, build and run the project: ``` -yarn start +make dev ``` -You should now be able to access Portainer at `https://localhost:9443`. +You should now be able to access Portainer at `https://localhost:9443` and UI dev server runs on `http://localhost:8999`. + +For additional commands, run `make help`. {% hint style="info" %} -The frontend application will update when you save your changes to any of the sources. Just refresh the browser to see the changes +The frontend application will update and refresh when you save your changes to any of the sources. {% endhint %} ## Contribution Guidelines