1
00:00:03,910 --> 00:00:10,750
Hello, everyone, and welcome to this new section of the Angler Corps deep dive course so far in this

2
00:00:10,750 --> 00:00:17,050
course, we have been demonstrating the key features of angular using a repository of using Injinoo

3
00:00:17,050 --> 00:00:18,280
and the angular clay.

4
00:00:18,490 --> 00:00:23,890
We are now going to quickly switch to a starter, a repository that is available on GitHub.

5
00:00:24,040 --> 00:00:27,830
But please don't worry, because this is not a completely new code base.

6
00:00:27,880 --> 00:00:31,630
This is very similar to the repository that we just scaffolded.

7
00:00:31,990 --> 00:00:39,370
All we have extra is a little bit of cyesis some data that we can play around with and a small HTP backend

8
00:00:39,370 --> 00:00:44,200
server that we will use later in the course to learn the angle of ETP module.

9
00:00:44,380 --> 00:00:47,860
Let's then quickly install these new course playground.

10
00:00:48,040 --> 00:00:55,030
In order to grab this code, we need to head over to the GitHub dot com angular niversity page available

11
00:00:55,030 --> 00:00:58,720
at GitHub dot com Bangladesh University.

12
00:00:58,870 --> 00:01:02,170
To find the code for our lessons, we are going to scroll down.

13
00:01:02,170 --> 00:01:08,170
And here in the search repositories box, we are going to search for the deep dive course.

14
00:01:08,380 --> 00:01:14,830
So as you can see, we have found here the correct repository, its name Angular Dash course.

15
00:01:15,190 --> 00:01:22,170
If we click into it, we are going to find here our code, the repository with the correct course logo.

16
00:01:22,390 --> 00:01:27,790
Now, in these repository, we are going to find here a series of branches.

17
00:01:28,060 --> 00:01:33,280
So here in the branch dropdown, if you click on it, you're going to find a list of branches.

18
00:01:33,280 --> 00:01:37,390
Each branch contains one separate section of the course.

19
00:01:37,570 --> 00:01:40,000
There are two ways forgetting the lessons code.

20
00:01:40,000 --> 00:01:45,280
You can either download it as a zip file or you can clone the repository.

21
00:01:45,460 --> 00:01:48,880
Let's say that we want to simply download the code as a zip file.

22
00:01:48,880 --> 00:01:56,200
We click into the branch and here in the GitHub clone or download button, we are going to hit here,

23
00:01:56,200 --> 00:01:57,720
download ZIP.

24
00:01:58,150 --> 00:02:03,610
This is going to give us a zip file that contains all the code needed for this new section.

25
00:02:03,790 --> 00:02:04,990
If you prefer.

26
00:02:04,990 --> 00:02:10,900
Instead of downloading a zip file, you can also simply clone and switch to this branch.

27
00:02:11,170 --> 00:02:12,670
So let's see how to do that.

28
00:02:12,880 --> 00:02:20,350
We're switch here to a Navy and let's say that we want to switch to the one that components branch.

29
00:02:20,350 --> 00:02:25,000
So if you are using it in your local machine, you can do that in the following way.

30
00:02:25,150 --> 00:02:31,330
You type the following command, get checked out for creating a new branch, minus B, the name of the

31
00:02:31,330 --> 00:02:37,420
local branch, which is going to be called one dash components, because this is the angular components

32
00:02:37,420 --> 00:02:37,990
section.

33
00:02:38,410 --> 00:02:44,620
And the second argument is going to be the name of the remote branch that we want to clone in this case,

34
00:02:44,620 --> 00:02:49,150
origin one dash components one way or the other.

35
00:02:49,180 --> 00:02:53,730
You're going to get the code and open it in your idea, in your machine.

36
00:02:54,040 --> 00:02:59,750
Once you have the code available, you can go ahead and run the NPM install command.

37
00:02:59,800 --> 00:03:04,990
This is going to install all the new dependencies needed for running our playground.

38
00:03:05,530 --> 00:03:11,380
Once the installation is completed, we are going to go ahead and run and start after a moment.

39
00:03:11,380 --> 00:03:13,770
Our development server is going to start up.

40
00:03:13,780 --> 00:03:21,630
So if we head over to localhost 4200, we're going to have here the initial starting point of this branch.

41
00:03:21,790 --> 00:03:26,740
So as you can see, we have here a very similar playground to what we had before.

42
00:03:26,920 --> 00:03:32,290
We just have here a little bit of success that will help us to build our components.

43
00:03:32,500 --> 00:03:38,790
And we also have here a small server that we're going to be using later in this course.

44
00:03:39,220 --> 00:03:44,290
So let's go ahead and start exploring the angular component Epper.

45
00:03:44,320 --> 00:03:48,910
Let's see how can we build our own angular custom component?

