0
0
Firebasecloud~30 mins

Firebase Console navigation - Mini Project: Build & Apply

Choose your learning style9 modes available
Firebase Console navigation
📖 Scenario: You are starting a new project using Firebase. You want to organize your Firebase Console by creating a project, setting up authentication methods, and adding a Firestore database.
🎯 Goal: Build a simple Firebase Console setup by creating a project dictionary, adding configuration settings, defining authentication methods, and completing the Firestore database setup.
📋 What You'll Learn
Create a dictionary to represent a Firebase project with exact keys and values
Add a configuration variable for the project region
Define a list of authentication methods supported
Complete the Firestore database setup with exact properties
💡 Why This Matters
🌍 Real World
This project simulates setting up and organizing Firebase Console configurations programmatically, which helps beginners understand how Firebase projects are structured.
💼 Career
Understanding Firebase Console navigation and configuration is essential for cloud developers and engineers working with mobile and web app backends.
Progress0 / 4 steps
1
Create Firebase project dictionary
Create a dictionary called firebase_project with these exact entries: 'project_id': 'my-firebase-app', 'project_name': 'My Firebase App', and 'created': true.
Firebase
Need a hint?

Use curly braces to create a dictionary with the exact keys and values.

2
Add project region configuration
Add a variable called project_region and set it to the string 'us-central1'.
Firebase
Need a hint?

Assign the string 'us-central1' to the variable project_region.

3
Define authentication methods list
Create a list called auth_methods containing these exact strings in order: 'Email/Password', 'Google', and 'Anonymous'.
Firebase
Need a hint?

Use square brackets to create a list with the exact authentication methods in order.

4
Complete Firestore database setup
Create a dictionary called firestore_db with these exact entries: 'enabled': true, 'location': 'us-central1', and 'mode': 'native'.
Firebase
Need a hint?

Create a dictionary with the exact keys and values to represent Firestore database setup.