-# SpeisekartenGenerator
+# Speisekarten Editor
-This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.3.2.
+Diese App hat den zweck eine Speisekarte leicht zu erstellen und in eine
+statische HTML zu exportieren. Zudem kann eine Speisekarte als json exportiert
+sowie importiert werden.
-## Development server
+## Entwicklungsumgebung
-Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.
+Mit den folgenden Befehlen kann ein localer Entwicklungsserver gestartet werden:
-## Code scaffolding
+```bash
+npm install
+ng serve
+```
-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`.
+Im Browser kann unter http://localhost:4200/ die Anwendung aufgerufen werden.
-## Build
-Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
+Mit dem folgenden Befehl wird die Anwendung gebaut um diese Dateien auf ein
+Produktivsystem zu deployen:
-## Running unit tests
+```bash
+ng build
+```
-Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
-
-## Running end-to-end tests
-
-Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
-
-## Further help
-
-To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
+Im Ordner dist sind dann die Dateien, die auf einen Webspace kopiert werden
+können.
\ No newline at end of file