Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to open the Firebase Console for your project.
Firebase
Open your browser and go to https://console.firebase.[1]/
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using .org or .net instead of .com
Typing firebase.google.com instead of console.firebase.com
✗ Incorrect
The Firebase Console is accessed via https://console.firebase.google.com/
2fill in blank
mediumComplete the code to select your Firebase project from the console.
Firebase
Click on the project dropdown menu at the top left and select [1].
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Selecting 'Settings' instead of the project name
Clicking on 'Authentication' or 'Database' before selecting a project
✗ Incorrect
You select your project by clicking its name in the project dropdown menu.
3fill in blank
hardFix the error in the navigation path to access the Firestore database.
Firebase
From the Firebase Console, click on [1] in the left menu, then select Firestore Database.
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Clicking 'Firestore' directly (it is a subsection, not a main menu item)
Selecting 'Authentication' or 'Storage' instead of 'Database'
✗ Incorrect
The Firestore database is accessed under the 'Database' section in the console.
4fill in blank
hardFill both blanks to navigate to the Authentication section and add a new user.
Firebase
In the Firebase Console, click on [1] in the left menu, then click [2] to add a new user.
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Selecting 'Users' instead of 'Authentication' for the first blank
Clicking 'Sign-in method' instead of 'Add user' to add a user
✗ Incorrect
You first select 'Authentication' then click 'Add user' to add a new user.
5fill in blank
hardFill all three blanks to correctly configure Firebase Hosting deployment steps.
Firebase
First, run [1] to initialize hosting, then edit [2] to set your public directory, finally run [3] to deploy.
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'firebase start' instead of 'firebase deploy' to deploy
Editing the wrong file instead of 'firebase.json'
✗ Incorrect
You initialize hosting with 'firebase init hosting', configure 'firebase.json', then deploy with 'firebase deploy'.