🚀 Host Your Website on Firebase

Learn how to deploy your website to Firebase Hosting in just a few simple steps!

Prerequisites

Before starting, make sure you have:

✓ Node.js installed on your computer

✓ A Google account for Firebase

✓ Your website files ready (HTML, CSS, JS)

Step 1: Install Firebase CLI

Open your terminal and run:

npm install -g firebase-tools

Step 2: Login to Firebase

Authenticate with your Google account:

firebase login

Step 3: Initialize Your Project

Navigate to your project folder and run:

firebase init

Select Hosting and follow the prompts.

Step 4: Deploy Your Website

Deploy your site with one command:

firebase deploy

🎉 Your site is now live!

💡 Tip: Firebase will provide you with a URL where your site is hosted. You can also connect a custom domain later!