Firebase is built around a web console designed for the desktop. But a lot of the work — checking a value, fixing a record, disabling an account — is small, urgent, and doesn’t need a laptop. Here’s how to handle those moments from an iPhone.
What you can do from a phone
Most day-to-day Firebase tasks map cleanly to a phone:
- Firestore — browse collections, read documents, and edit, create, or delete records.
- Authentication — look up a user, inspect their account, disable it, or trigger a password reset.
- Cloud Storage — browse buckets, preview images, and download or upload files.
- Remote Config — change a parameter and publish it safely, without overwriting a teammate’s change.
- Cloud Functions — check which functions are deployed and whether they’re erroring.
How it connects
A native client like Firedeck signs in with your Google account and calls Google’s Firebase APIs directly from the device. There’s no separate account and no service-account key — you see exactly the projects your Google account already has access to.
When it’s the right tool
Phone management shines for reactive, small-scope work: an alert fires, a user emails support, a launch needs a config tweak. For large data migrations or writing Security Rules, the desktop is still the better surface. Use each where it fits.
A note on safety
Editing production data from a phone is fine when the tool is honest about what it touches. Look for: requests scoped to your own permissions, explicit confirmation before destructive actions, and no server in the middle holding your tokens. Firedeck is built that way — see Security considerations.