Skip to content

Instantly share code, notes, and snippets.

@kerryhatcher
Last active May 29, 2023 15:10
Show Gist options
  • Save kerryhatcher/79ecd7dce987bde94a7f06be00548c83 to your computer and use it in GitHub Desktop.
Save kerryhatcher/79ecd7dce987bde94a7f06be00548c83 to your computer and use it in GitHub Desktop.
Angular Firebase How-To

Install PreReqs:

  1. nvm
  2. git

Setup Project:

  1. Create GIT Repo
  2. cd to repo
  3. Install tools
    1. nvm install 16
    2. nvm use 16
    3. npm i -g @angular/cli
    4. npm install -g firebase-tools
  4. init angular app ng new $APPNAME --directory=./
  5. verify all is well 3. npm run start 4. visit http://localhost:4200 in a browser
  6. add anglefire ng add @angular/fire
  7. add MaterialUI ng add @angular/material
  8. generate configs ng g environments
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment