-
Notifications
You must be signed in to change notification settings - Fork 0
Deployment
Prathamesh Bhamare edited this page Mar 9, 2026
·
1 revision
How to deploy MindBridge to Firebase Hosting.
Firebase CLI installed:
npm install -g firebase-tools
firebase --version # should show 13.x.x or higher# 1. Build the app
npm run build
# 2. Deploy to Firebase Hosting
firebase deploy --only hosting
# Your live URL:
# https://mindbridge-v2-18fa8.web.appfirebase deploy --only firestore:rulesDo this whenever you change firestore.rules.
firebase deployDeploys hosting + Firestore rules + indexes.
Once CI/CD is set up, just push to GitHub:
git add .
git commit -m "your changes"
git pushFirebase deploys automatically in ~2 minutes.
See CI/CD Pipeline for setup instructions.
| Environment | URL |
|---|---|
| Local dev | http://localhost:5173 |
| Live (Firebase) | https://mindbridge-v2-18fa8.web.app |
| Live (alt) | https://mindbridge-v2-18fa8.firebaseapp.com |
Go to Firebase Console → Hosting → you can see all past deployments and roll back to any previous version if needed.
- Go to https://console.firebase.google.com
- Select project → Hosting
- Find the previous deployment in the history
- Click ••• → Rollback