firebase
- Kiazsoft

- Aug 25, 2020
- 1 min read
Updated: Oct 12, 2020
Setup Mac to use firebase
$ npm install -g firebase-toolsLogin to you firebase account
$ firebase loginInitialize your project for firebase
$ firebase initOnce initialized add your project to firebase project
$ firebase use --add
$ ? Which project do you want to add? (Use arrow keys)
proj1
>proj2
proj3List firebase projects
$ firebase projects:listBuild your angular project for prod
$ ng build --prodOnce selected your local project will point to selected firebase project.
Now deploy your project to firebase
$ firebase deploy
After successful deploy it will display the Project Console & Hosting URL
Comments