April 2018
Intermediate to advanced
284 pages
6h 43m
English
Now that we've successfully installed Firebase CLI, let's copy the existing application code from Chapter 3, , to the new directory in Chapter 5, . Here, we'll initialize the Firebase app and run the following command to log in to the Firebase console before initializing the app:
firebase login
Once you are successfully logged in to the Firebase console, run the following command to initialize the project:
firebase init
Once we run this command, it will prompt you to select the Firebase feature, project, and directory folder (relative to your project directory) that will contain hosting assets to be uploaded with the firebase deploy command (by default, ...