Skip to content

Latest commit

 

History

History
54 lines (42 loc) · 860 Bytes

FIREBASE.md

File metadata and controls

54 lines (42 loc) · 860 Bytes

Setup Firebase

Most of the Firebase configuration is already done for you so unless extra features are required, running firebase init is not neccesary.

1. Create the Firebase Project

Create a project in the Firebase Console & add a web app to your project.

1. Install the Firebase CLI

npm install -g firebase-tools

2. Login

Follow the login process

firebase login

3. Add the project reference

firebase use --add

5. Add Your Configuration

Create firebase.config.ts in src/app & export your app config object as the default.

export default {
    // Your App Config Here
}

6. Install Dependencies

NPM:

npm install

Yarn:

yarn

6. Build

yarn build

7. Deploy

yarn deploy