From b31b01c97dd0c863ad6bb11814de19e51ae5a69f Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Tue, 12 Oct 2021 13:52:13 +1100 Subject: [PATCH] update build instructions for macos --- BUILDING.md | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index 2888b54e2..a09842c43 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -87,9 +87,9 @@ npm config set msvs_version 2015
Mac -If you are going to distribute the binary then make sure you have a `Developer ID Application` certificate in your keychain. +If you are going (and only if) to distribute the binary then make sure you have a `Developer ID Application` certificate in your keychain. -You will then need to generate an [app specific password](https://support.apple.com/HT204397) for your Apple ID. +You will also need to generate an [app specific password](https://support.apple.com/HT204397) for your Apple ID. Then run the following to export the variables @@ -99,6 +99,26 @@ export SIGNING_APP_PASSWORD= export SIGNING_TEAM_ID= ``` +Then, to just generate the files and build the app do + +``` +curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash # install nvm + + +# the script above prints at the end a few lines you have to run in your terminal + +https://git-lfs.github.com/ # visit this page, download and install git-lfs + +git lfs install # once git lfs is installed, you have to run this command too + +nvm install # install the current node version used in this project +nvm use # use the current node version used in this project +npm install -g yarn # install yarn globally for this node version +yarn install --frozen-lockfile # install all dependecies of this project +yarn grunt # transpile and assemble files +yarn start-prod # start the app on production mode (currently this is the only one supported) +``` +
### Commands