Skip to content

Instantly share code, notes, and snippets.

View capscode's full-sized avatar
🏠
Working from home

capscode capscode

🏠
Working from home
View GitHub Profile
@capscode
capscode / database.rules.json
Last active January 19, 2023 18:17 — forked from codediodeio/database.rules.json
Common Database Rules for Firebase
View database.rules.json
// No Security
{
"rules": {
".read": true,
".write": true
}
}