# Firebase

essay

How to deploy React app in Firebase

6 May 2024

A React Single Page Application (SPA) is essentially a static website and can be easily hosted using platforms like Firebase or Netlify.

notes

Firebase rules update

5 January 2024

To read and write without authenticaton in firebase, you need to updated the rules in the database as below.

{
  "rules": {
    ".read": true,
    ".write": true
  }
}

Please note that this allow anyone to fetch and write the data to the database.