From 5f8b6b3e2383a28f7320d43629e36c0ab65a5eb4 Mon Sep 17 00:00:00 2001 From: translucentfocus <26986716+translucentfocus@users.noreply.github.com> Date: Sat, 21 Sep 2019 13:23:29 -0500 Subject: [PATCH 1/2] Add OS Build Options Noticed the readme doesn't include that you may need to change your package.json depending on your OS --- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 23c99e15..d65e5d76 100755 --- a/README.md +++ b/README.md @@ -27,7 +27,23 @@ The terminal is the life and blood of any IDE, allowing for complex manipulation ## Getting Started with Reactide The Reactide IDE can be set up in two ways, the first is to bundle the electron app and run it as a native desktop App. The instructions are as follows: -1. go to your terminal and type the following: + +1. specify the OS you're building for in package.json by changing the --platform option in line 15 of package.json + +MacOS +``` +"electron-packager": "electron-packager . --overwrite --platform=darwin --arch=x64 --prune=true --out=release +``` +Linux +``` +"electron-packager": "electron-packager . --overwrite --platform=linux --arch=x64 --prune=true --out=release +``` +Windows +``` +"electron-packager": "electron-packager . --overwrite --platform=windows --arch=x64 --prune=true --out=release +``` + +2. go to your terminal and type the following: ``` git checkout 3.0-release npm install From 5878a166c51cbf2c242b2c2ebc52a9b4d448c631 Mon Sep 17 00:00:00 2001 From: translucentfocus <26986716+translucentfocus@users.noreply.github.com> Date: Sat, 21 Sep 2019 13:24:04 -0500 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d65e5d76..13346cdf 100755 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ npm install npm run webpack-production npm run electron-packager ``` -2. in your Reactide folder, navigate to the release-builds folder and double-click on Reactide (executable). +3. in your Reactide folder, navigate to the release-builds folder and double-click on Reactide (executable). ## To check out Reactide in developer mode follow these instructions: 1. go to your terminal and type the following: