How to Create a Firebase Project

| By Maina Wycliffe | | | How To - Step by Step Guides

This is a step by step how to guide to show you how to create a new Firebase project.

First, visit Firebase Console using this visiting the following URL - https://console.firebase.google.com. Login using your Google Account - if you are not already logged in.

Firebase Console Homepage
Firebase Console Homepage

Then, create a new project, enter the name of the project and click continue.

Firebase Console Homepage

In the next step, you will be asked whether to set up Google Analytics. Let’s go ahead and set it up.

Firebase Console Homepage

If you don’t need Google Analytics, select “Not at The Moment” option. You can always set it up later.

If you are not setting up Google Analytics, skips the next 3 steps. In the next step, you will be prompted to either select or create a Google Analytics Account. If you already have a Google Analytics account, click on Select Google Account and select the account.

Firebase Console Homepage

If you don’t have one, click on create a new one and enter the name of the account.

Firebase Console Homepage

Finally, select the Google Analytics Location – default United States – and finally, read and configure Data-sharing settings. Finally, accept Google Analytics Terms and Create Project.

Firebase Console Homepage

The process should take just a few seconds, once done click continue and you will be taken to projects homepage.

Firebase Console Homepage

Change Public-facing App Name

Lastly, change the public-facing name of your firebase app to something more friendly.

  • First, Go to the settings of your Firebase Application.

    Firebase Console Homepage

  • And then Under Public Settings, change the Public-facing name and add a support email address:

    Firebase Console Homepage

  • Click on the edit button next to the public-facing name to change the name

    Firebase Console Homepage

  • Save the changes and you are done.

Install Firebase CLI

“The Firebase CLI (GitHub) provides a variety of tools for managing, viewing, and deploying to Firebase projects.”

  • Firebase CLI requires both NodeJS and NPM. You can install Node by using Node Version Manager (NVM) for Mac/Linux or Windows. You can also download and install the version of Node directly from their website here.

  • Next, install Firebase CLI using the following command:

npm install -g firebase-tools
  • Once the process is complete, Sign in to Firebase by running firebase login. Make sure to sign in with the same Google account you used to create the Firebase Project above.
firebase login
  • You can test if firebase login worked by running firebase list. This is going list projects you have in your Firebase Account.
firebase list

Comments