|
1 |
| -# Project |
2 |
| - |
3 |
| -This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 7.2.2. |
4 |
| - |
5 |
| -## Development server |
6 |
| - |
7 |
| -Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files. |
8 |
| - |
9 |
| -## Code scaffolding |
10 |
| - |
11 |
| -Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`. |
12 |
| - |
13 |
| -## Build |
14 |
| - |
15 |
| -Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build. |
16 |
| - |
17 |
| -## Running unit tests |
18 |
| - |
19 |
| -Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io). |
20 |
| - |
21 |
| -## Running end-to-end tests |
22 |
| - |
23 |
| -Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/). |
24 |
| - |
25 |
| -## Further help |
26 |
| - |
27 |
| -To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md). |
| 1 | +# Electron-Angular |
| 2 | +This project is intended as a frame for Electron applications, with a UI build on Angular. |
| 3 | +The only thing that needs to be done to get this up and running is setting your own values for the application like name, description, .. |
| 4 | + |
| 5 | +## Prerequisite |
| 6 | +1. Npm must be installed |
| 7 | +2. Angular CLI must be installed |
| 8 | + |
| 9 | +## Setup project |
| 10 | + |
| 11 | +1. Setup the "package.json" file. Replace all content between "{{ }}" including "{{}}" with your own values: |
| 12 | + * {{ApplicationName}} = Name of your application |
| 13 | + * {{ApplicationDescription}} = Some description for your application |
| 14 | + * {{AuthorName}} = Name of the publisher/maintainer/author/.. |
| 15 | + * {{AuthorEmail}} = Email, some support mail |
| 16 | + * {{AppicationDomain}} = Unique identifier like "com.google.android" for example |
| 17 | + * {{Copyright}} = Copyright for your application |
| 18 | + * {{macApplicationCategory}} = Category for the application when on a Mac, [documentation about all the possible values](https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/LaunchServicesKeys.html#//apple_ref/doc/uid/TP40009250-SW8) |
| 19 | + * {{SomeKeyWords}} = Comma-separated list of keywords referring to your application |
| 20 | + |
| 21 | +2. Run "npm install" in root-directory of the application, this to install all required packages. |
| 22 | + |
| 23 | +## Run the application |
| 24 | +Just run "npm run electron" |
0 commit comments