Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update readme.md #2

Merged
merged 1 commit into from
Mar 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions learning/dashboard/readme.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## Create and Run your first angular project:

STEP 1->Create a new Angular project using the `ng new` command.

```bash
ng new <your-app-name>
```

STEP 2->Move to your app directory

```bash
cd <your-app-name>
```

STEP 3->For Running the application run the following command then Open your browser and navigate to http://localhost:4200/.
You should see the default Angular welcome page.

```bash
ng serve
```

## Create Simple Hello World app in Angular

https://drive.google.com/file/d/1ccsbeen64POdsQV3EkfsNniHbTc4GoLv/view?usp=sharing
Expand Down