Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add OS Build options to readme #176

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 18 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,30 @@ 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
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:
Expand Down