To clone and run this repository you'll need Git and Node.js (which comes with npm) installed on your computer.
First you need to build the angular application and copy the dist
directory to the root of the PIA Electron Application.
From your command line:
npm install -g electron
# Clone this repository
git clone https://github.com/LINCnil/pia-app
# Go into the repository
cd pia-app
# Install dependencies (You can use YARN instead of npm install)
npm install
# Run the app
npm start
Install electron-builder:
npm install -g electron-builder
Build with the command:
For MacOs users: npm run mac
For GNU/Linux users: npm run linux
For Windows users: npm run win
Note: If you're using Linux Bash for Windows, see this guide or use node
from the command prompt.
- electron.atom.io/docs - all of Electron's documentation
- electron.atom.io/community/#boilerplates - sample starter apps created by the community
- electron/electron-quick-start - a very basic starter Electron app
- electron/simple-samples - small applications with ideas for taking them further
- electron/electron-api-demos - an Electron app that teaches you how to use Electron
- hokein/electron-sample-apps - small demo apps for the various Electron APIs