Skip to content

Instantly share code, notes, and snippets.

View xprilion's full-sized avatar
:shipit:
Trying to work from home

Anubhav Singh xprilion

:shipit:
Trying to work from home
View GitHub Profile
@xprilion
xprilion / 1.js
Last active January 20, 2024 07:30
Firestore Rules
// Basic public access
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write: if true;
}
}
}