0
0
Firebasecloud~5 mins

Firebase Console navigation - Commands & Configuration

Choose your learning style9 modes available
Introduction
Firebase Console is a web interface that helps you manage your Firebase projects easily. It lets you see your app data, configure services, and monitor usage without writing code.
When you want to add a new app to your Firebase project and configure its settings.
When you need to check your app's analytics and user engagement data.
When you want to manage your database, storage, or authentication settings.
When you want to set up notifications or cloud functions for your app.
When you want to monitor your app's performance and fix issues.
Commands
Open the Firebase Console website in your browser to start managing your Firebase projects.
Terminal
open https://console.firebase.google.com/
Expected OutputExpected
The Firebase Console homepage loads, showing your projects list or a prompt to create a new project.
Log in to your Firebase account from the command line to link your local environment with your Firebase projects.
Terminal
firebase login
Expected OutputExpected
✔ Success! Logged in as your-email@example.com
List all Firebase projects associated with your account to see available projects you can manage.
Terminal
firebase projects:list
Expected OutputExpected
┌───────────────────────────────┬───────────────┐ │ Project Display Name │ Project ID │ ├───────────────────────────────┼───────────────┤ │ My Sample App │ my-sample-app │ │ Example Project │ example-proj │ └───────────────────────────────┴───────────────┘
Select the Firebase project named 'my-sample-app' to work with it in your local environment.
Terminal
firebase use my-sample-app
Expected OutputExpected
Now using project my-sample-app (my-sample-app)
Open the Firebase Console page for the currently selected project in your default web browser.
Terminal
firebase open
Expected OutputExpected
Opening https://console.firebase.google.com/project/my-sample-app/overview
Key Concept

If you remember nothing else, remember: the Firebase Console is your main control panel to manage all parts of your Firebase projects easily through a web interface.

Common Mistakes
Trying to manage Firebase projects without logging in first.
You cannot access or control your projects without being logged in, so commands or console access will fail or show no projects.
Always run 'firebase login' before managing projects to authenticate your account.
Not selecting a project before running commands that require a project context.
Commands like 'firebase open' or deploying services need to know which project to work on, otherwise they fail or prompt errors.
Use 'firebase use <project-id>' to select your project before running project-specific commands.
Summary
Open the Firebase Console website to access your projects visually.
Use 'firebase login' to authenticate your account in the command line.
List your projects with 'firebase projects:list' to see what you can manage.
Select a project with 'firebase use <project-id>' to work on it locally.
Open the selected project in the browser with 'firebase open' for easy navigation.