Deploy Angular project on Netlify.

Manuel Hernández Lemus
2 min readOct 26, 2019

Netlify is a platform where you can build, deploy and host your fron-end.

In this article you will lear how deploy your Angular project in a few steps.

1.- Create an Angular project

ng new angular-netlify

2.- In your Github account create a new repository.

3.- Connect and send your local project with your remote repository.

//Connect
git remote add origin https://github.com/lemmusm/angular-deploynetlify.git
// Send
git push -u origin master
GitHub repository

4.- In Netlify login with your Github account, create new site and connect to repository created.

Login with GitHub

--

--