Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
david-peter-smith committed Jan 15, 2023
0 parents commit 3dadc05
Show file tree
Hide file tree
Showing 9 changed files with 9,338 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

node_modules/
out/

/node_modules
/out
35 changes: 35 additions & 0 deletions Readme.MD
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
22 changes: 22 additions & 0 deletions forge.config.js
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: {},
},
],
};
2 changes: 2 additions & 0 deletions make
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[email protected] make /electron-playground
electron-forge make
Loading

0 comments on commit 3dadc05

Please sign in to comment.