Deploying to 'warehouse-80c5e' - firebase

How to solve Firebase Hosting Setup Complete ?
While deploy this
Welcome
Firebase Hosting Setup Complete
You're seeing this because you've successfully setup Firebase Hosting. Now it's time to go build something extraordinary!
OPEN HOSTING DOCUMENTATION

Related

why does my firebase deployment does not run my website

my cli interface approval of my website deployment
when i run my website i get this
i deployed to the firebase server and expected the server to run my coded website but does not deploy
I have run the website but all i get is i should another from firebase hosting
Firebase Hosting Setup Complete
You're seeing this because you've successfully setup Firebase Hosting. Now it's time to go build something extraordinary! this is the message i get on my website instead of my html css and javascript code

Unable to deploy to firebase hosting

I deployed to firebase hosting,
after that
I want to delete the duplicate deployed
but I couldn't find a way to delete the hosting
so what I did,
I used firebase deploy hosting:disable sample-project
and I deleted all rollback in the console
now I have no way to re-deploy it.
any one knows how to revive my google deploy?
or the only way to revive it is just create another project and abandon this one ?

Can you move a firebase hosting site to a different project?

So, I was wondering, is it possible to move a firebase hosting site to a different project?.
I searched through the documentation, but I dont see anything anywhere that says how to do it, or if it is even possible
There is no built-in operation to move to a new project. But if you're deploying with the Firebase CLI, you can run:
firebase use <new project ID>
And then:
firebase deploy
To deploy the same content to the other project.
If you have your code for the site then you can just create a new folder and use firebase init hosting and initialize hosting in new project.
After that the process of deploying remains the same i.e.
firebase deploy --only hosting
PS: Also if you are using any custom domains, you would have to verify the ownership of the domain again in the new project.

Whats the difference between firebase web app and firebase hosting

what is the difference between the firebase web app and firebase hosting?
As far as i can tell the web app is used for an app thats actually just a browser,
and the firebase hosting is used just for websites.
Firebase for Web-Apps is a JavaScript library and Firebase Hosting is a web-hosting platform.
The JS can be loaded from just any web-server, but on Firebase Hosting it is better integrated with other the components in the Firebase ecosystem - and it can be deployed with the Firebase CLI.

How to deploy google firebase functions using cmd?

I have a problem with a web hosting project. I created a new proyect in google firebase, and I executed the following commands:
C:\myproject>firebase init functions
C:\myproject>firebase deploy --only functions
But the site says this:
Site Not Found
Why am I seeing this?
There are a few potential reasons:
You haven't deployed an app yet.
You may have deployed an empty directory.
This is a custom domain, but we haven't finished setting it up yet.
How can I deploy my first app?
Refer to our hosting documentation to get started.
What could I do for show, at least, some text when an user go to my project url?
The way you now invoke the Firebase CLI, it will only deploy the Cloud Functions in your project. It will not deploy the web site. In fact, the way you've run it, it probably didn't even create a web site to deploy.
Initialize the project with:
firebase init
And answer the questions this shows.
If you want to deploy the web site, use:
firebase deploy --only hosting
More likely you should simply deploy everything to prevent running into this problem:
firebase deploy

Resources