DEV Community

Deep Bag
Deep Bag

Posted on

How to deploy react app on Firebase

Alt Text
With the rise of cloud computing, hosting web apps on services like Heroku, AWS, Azure, and many more has been on the rise. Amidst all these options, Firebase has emerged as a great solution to host serverless web apps. It's easy, pretty fast, and Free!

Getting Started

In this tutorial, I'll take you through all the steps involved in deploying a React app on firebase.

Prerequisites:

  1. A firebase project set up. If you don't have one, create one using the firebase console.
  2. A React app set up that you wish to deploy. Configuring Firebase Install Firebase CLI To host your site with Firebase Hosting, you need the Firebase command-line tool (CLI). Run the following npm command to install the CLI on your system globally:
$ npm install -g firebase-tools
Enter fullscreen mode Exit fullscreen mode

Login to Firebase

Make sure you're in the root directory of your React app and run the following command to login to firebase in your terminal:

$ firebase login
Enter fullscreen mode Exit fullscreen mode

If you're not logged in, you'll be asked to enter the credentials for your google account. Initiate your project Now that you've got the firebase CLI configured, it's time to initialize firebase in your react app. Run the following command:

$ firebase init
Enter fullscreen mode Exit fullscreen mode

You will now enter the firebase tools shell and will be prompted with a sequence of questions and various configuration options. Let's go through these questions together step by step to achieve our desirable configuration.
Alt Text
Select - Hosting: Configure and deploy Firebase Hosting sites.
Alt Text
Select - Use an existing project
Alt Text
Select the firebase project that you created (e.g. demo-tutorial-project in mycase)
Alt Text

  1. Specify the build that we created in the previous section, to be used as your project's public directory.
  2. Select whether or not you need your firebase app to be configured as a single-page app. I'm selecting YES in my case.
  3. As we've already created a build directory in our previous section, therefore build/index.html already exists. We would want to let it be as is and enter No for this question.

This marks the end of our configuration process and our app is now ready to deploy!

To verify the successful completion of the initialization process, simply check the presence of .firebasercand firebase.json files. These are automatically created by firebase during the initialization process.

Run the following command to create a build directory with a production build of your app:

$ npm run build
Enter fullscreen mode Exit fullscreen mode

Inside the build/static directory will be your JavaScript and CSS files. To know more about React production builds, refer to the production build section of the create-react-app docs.

Deploy to Firebase

Just run the following command to deploy your app:

$ firebase deploy
Enter fullscreen mode Exit fullscreen mode

Firebase will now run the deploying process and will give you a unique URL where your app is deployed. For e.g. in my case, it was - https://yourapp.web.app/.
yeahh! Your ReactApp is now deployed with Firebase hosting.

Top comments (0)