steps to the instructions:
- If you don't have a GitHub account, go to GitHub and sign up for a new account.
- Download and install Git on your PC. You can download it from the official Git website: Git Downloads.
- Open your terminal or command prompt.
- Navigate to the directory where you want to clone the repository using the
cd
command. - Copy the repository URL:
https://github.com/zeyadsharo/Angular-practical-third-stage.git
- Run the following command to clone the repository:
git clone https://github.com/zeyadsharo/Angular-practical-third-stage.git
- Change into the cloned directory:
cd Angular-practical-third-stage
- Before starting any new work, pull the latest changes from the repository:
git pull origin main
- After pulling the latest changes, navigate into the project directory if you're not already there:
cd Angular-practical-third-stage
- Install project dependencies using npm:
npm install
- Start the Angular application:
npm start
- Open your browser and visit
http://localhost:4200/
to view the running Angular application.
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 generate component component-name
to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module
.