Skip to content

Latest commit

 

History

History
67 lines (43 loc) · 1.48 KB

File metadata and controls

67 lines (43 loc) · 1.48 KB

Angular Starter

Angular starter project with routing and SCSS that uses the following packages: angular-fontawesome and ng-bootstrap.

Check out this blog post for more details.

Get the code

Use one of the methods given below to get the project source code on your local machine.

Clone

SSH:

git clone git@github.com:peterrhodesdev/angular-starter.git

HTTPS:

git clone https://github.com/peterrhodesdev/angular-starter.git

GitHub CLI:

gh repo clone peterrhodesdev/angular-starter

Fork and clone

gh repo fork peterrhodesdev/angular-starter --clone=true

Add a remote + pull

mkdir angular-starter
cd angular-starter
git init
git remote add angular-starter git@github.com:peterrhodesdev/angular-starter.git
git pull angular-starter main

Install dependencies

In the project root directory run

npm install

Run

Start up a development server by running the following command in the project root directory

ng serve

Once the project has compiled successfully, open a web browser and navigate to http://localhost:4200/.

These two steps can be combined by running ng serve -o, which will open the app automatically in your default browser.

To stop the app, go back to the terminal window and press ctrl + C.