From a7e69a673198d9981310c1be532a48422549cfb7 Mon Sep 17 00:00:00 2001 From: Timo Pagel Date: Thu, 1 Feb 2024 17:19:09 +0100 Subject: [PATCH 1/2] Update Development.md --- Development.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/Development.md b/Development.md index 4ae194210..8beffee92 100644 --- a/Development.md +++ b/Development.md @@ -1,20 +1,23 @@ # DSOMM -This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.3.6. +## Development server -### Development server +- Clone the repo +- `cd DevSecOps-MaturityModel` +- `npm install` +- `curl https://raw.githubusercontent.com/devsecopsmaturitymodel/DevSecOps-MaturityModel-data/main/src/assets/YAML/generated/generated.yaml -o src/assets/YAML/generated/generated.yaml # Download the generated.yaml and put it in here` +- 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. -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. -### Code scaffolding +## Code scaffolding 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`. -### Build +## Build Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. -### Running unit tests +## Running unit tests Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io). From e55d1a5a7966fa1e874f6126270914c3e96b84e9 Mon Sep 17 00:00:00 2001 From: Aryan <53595853+0x41head@users.noreply.github.com> Date: Fri, 2 Feb 2024 15:21:24 +0530 Subject: [PATCH 2/2] Update Development.md Better Formatting --- Development.md | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/Development.md b/Development.md index 8beffee92..0527c5aae 100644 --- a/Development.md +++ b/Development.md @@ -2,10 +2,23 @@ ## Development server -- Clone the repo -- `cd DevSecOps-MaturityModel` -- `npm install` -- `curl https://raw.githubusercontent.com/devsecopsmaturitymodel/DevSecOps-MaturityModel-data/main/src/assets/YAML/generated/generated.yaml -o src/assets/YAML/generated/generated.yaml # Download the generated.yaml and put it in here` +- Clone the repo +``` +git clone https://github.com/devsecopsmaturitymodel/DevSecOps-MaturityModel.git +``` +- Change directory to DSOMM +``` +cd DevSecOps-MaturityModel +``` +- Install Dependencies +``` +npm install +``` +- Downloads the generated.yaml and put it in the required folder +``` +curl https://raw.githubusercontent.com/devsecopsmaturitymodel/DevSecOps-MaturityModel-data/main/src/assets/YAML/generated/generated.yaml -o src/assets/YAML/generated/generated.yaml +``` + - 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.