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

Fixed inconsistencies in Readme how to run example #91

Merged
merged 1 commit into from
Feb 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 7 additions & 16 deletions templates/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,24 +20,27 @@ Install yarn.

yarn start:browser

or
*or:*

yarn rebuild:browser
cd browser-app
yarn start

*or:* launch `Start Browser Backend` configuration from VS code.

Open http://localhost:3000 in the browser.

## Running the Electron example

yarn start:electron

or
*or:*

yarn rebuild:electron
cd electron-app
yarn start

*or:* launch `Start Electron Backend` configuration from VS code.
## Developing with the browser example

Start watching all packages, including `browser-app`, of your application with
Expand All @@ -54,14 +57,7 @@ and the browser example.
cd browser-app
yarn watch

In a new terminal, rebuild the browser example.

yarn rebuild:browser

Launch `Start Browser Backend` configuration from VS code.

Open http://localhost:3000 in the browser.

Run the example as [described above](#Running-the-browser-example)
## Developing with the Electron example

Start watching all packages, including `electron-app`, of your application with
Expand All @@ -78,12 +74,7 @@ and the Electron example.
cd electron-app
yarn watch

In a new terminal, rebuild the Electron example.

yarn rebuild:electron


Launch `Start Electron Backend` configuration from VS code.
Run the example as [described above](#Running-the-Electron-example)

## Publishing <%= params.extensionName %>

Expand Down