From 7c00b85183b906c75771727176edf928b03253c6 Mon Sep 17 00:00:00 2001 From: John Poth Date: Sat, 16 Oct 2021 08:40:09 +0200 Subject: [PATCH] chore: update electron example (#210) Add examples to electron path Add run command --- examples/electron/README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/examples/electron/README.md b/examples/electron/README.md index 65759b4..5bbeaea 100644 --- a/examples/electron/README.md +++ b/examples/electron/README.md @@ -16,10 +16,14 @@ computer. * After building the web application, navigate to the ```electron``` directory and execute following commands to build the executable: ```bash - cd electron + cd examples/electron npm install npm run dist ``` +* Run the application: + ```bash + npm start + ``` If you encounter any issues, please check the troubleshooting below.