Installing Fire for Angular - blazed-space/fire-angular GitHub Wiki
To install, first clone the Angular Fire Github repo.
git clone https://github.com/blazed-space/fire-angular
Then, you will want to move to the root directory of the cloned repo
cd fire-angular
Next, you will want to install NPM dependencies
npm install
Development
You can run a local development server using Angular's CLI utility, make sure it is installed
npm install -g @angular/cli
And then, you can simply run the following to start a local development server:
ng serve
Once you have run the above command, navigate to localhost:4200 to see your development server.
Deployment
You can take advantage of this project's netlify.toml file, which allows you to deploy it to Netlify without any further configuration.