From 8d2af97082a3173dd67493388718a38293683298 Mon Sep 17 00:00:00 2001 From: Milan Pavlik Date: Tue, 30 Jun 2026 16:08:43 +0200 Subject: [PATCH 1/2] Update README title for test version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 651f227..70ca4b6 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Angular Sample App +# Angular Sample App Test This is an Angular app created via `ng new my-app`. From 084f41de921f918022db3474b39a72e1c5116f61 Mon Sep 17 00:00:00 2001 From: Milan Pavlik Date: Tue, 30 Jun 2026 14:19:59 +0000 Subject: [PATCH 2/2] Clean up README Co-authored-by: Codex --- README.md | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 70ca4b6..239f9b5 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,21 @@ -# Angular Sample App Test +# Angular Sample App -This is an Angular app created via `ng new my-app`. +This repository contains a sample Angular application generated with `ng new my-app`. -We've made changes to the following files to make it possible to iterate from a Gitpod Workspace on this sample Angular application: +## Project Structure -* .gitpod.yml: defines common tasks -* gitpod.Dockerfile: defines common software needed (like Chrome) +- `my-app/` contains the Angular application. +- `.gitpod.yml` defines the Gitpod workspace startup tasks. +- `gitpod.Dockerfile` defines the workspace dependencies, including Chrome. + +## Getting Started + +Install dependencies and start the development server from the Angular app directory: + +```sh +cd my-app +npm install +npm start +``` + +The app runs on `http://localhost:4200/` by default.