-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 3dadc05
Showing
9 changed files
with
9,338 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
node_modules/ | ||
out/ | ||
|
||
/node_modules | ||
/out |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Electron Playground Demo | ||
|
||
## Developer Environment Setup | ||
To run the project locallly | ||
|
||
### Prerequisites | ||
- Install the latest NODEJS LTS | ||
- Clone Repostitory | ||
|
||
### Commands | ||
|
||
To run the project ad hoc in developer mode locally open a command window to the repo and type | ||
|
||
``` | ||
npm start | ||
``` | ||
|
||
To build a new version of the application for distribution type the command: | ||
|
||
``` | ||
npm run make | ||
``` | ||
|
||
## Misc | ||
|
||
When Creating a new Electron project create a new folder, navigate to it using command and then type the following commands: | ||
|
||
``` | ||
npm init | ||
npm install --save-dev electron | ||
npm install --save-dev @electron-forge/cli | ||
``` | ||
|
||
For more information check out the official Electron Documents at: | ||
https://www.electronjs.org/docs/latest/tutorial/quick-start |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
module.exports = { | ||
packagerConfig: {}, | ||
rebuildConfig: {}, | ||
makers: [ | ||
{ | ||
name: '@electron-forge/maker-squirrel', | ||
config: {}, | ||
}, | ||
{ | ||
name: '@electron-forge/maker-zip', | ||
platforms: ['darwin'], | ||
}, | ||
{ | ||
name: '@electron-forge/maker-deb', | ||
config: {}, | ||
}, | ||
{ | ||
name: '@electron-forge/maker-rpm', | ||
config: {}, | ||
}, | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[email protected] make /electron-playground | ||
electron-forge make |
Oops, something went wrong.