Files
DevOps-Security-Agent-Skills/infrastructure/platforms/firebase-app-platform/SKILL.md
T

34 lines
784 B
Markdown
Raw Normal View History

2026-02-21 09:54:14 -05:00
---
name: firebase-app-platform
description: Build and operate apps on Firebase using Auth, Firestore, Cloud Functions, and Hosting.
license: MIT
metadata:
author: devops-skills
version: "1.0"
---
# Firebase App Platform
Ship mobile and web backends with Firebase managed services.
## Core Setup
```bash
npm install -g firebase-tools
firebase login
firebase init
firebase deploy
```
## Security and Scale
- Write strict Firestore security rules first.
- Separate environments by Firebase project.
- Enable budget alerts and quota monitoring.
- Move privileged logic into Cloud Functions.
## Related Skills
- [gcp-cloud-functions](../../cloud-gcp/gcp-cloud-functions/) - Function runtime patterns
- [vercel-deployments](../vercel-deployments/) - Frontend deployment option