|
|
|
@ -87,9 +87,9 @@ npm config set msvs_version 2015
|
|
|
|
|
<details>
|
|
|
|
|
<summary>Mac</summary>
|
|
|
|
|
|
|
|
|
|
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=<your app specific password>
|
|
|
|
|
export SIGNING_TEAM_ID=<your team id if applicable>
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
</details>
|
|
|
|
|
|
|
|
|
|
### Commands
|
|
|
|
|