Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase deploy without login

I'm trying deploy my firebase app. But when I try run 'firebase deploy', I got: enter image description here

Is any way to deploy the app automatically ( without human login to dashboard) ? I care only to send on firebase security rules.

like image 903
Artur Kasperek Avatar asked Dec 31 '15 09:12

Artur Kasperek


People also ask

Can you Host firebase locally?

When testing locally, Firebase serves your web app at a locally hosted URL. Hosting is part of the Firebase Local Emulator Suite, which enables your app to interact with your emulated Hosting content and config, as well as optionally your emulated project resources (functions, databases, and rules).

Can we deploy website on firebase?

Firebase Hosting is production-grade web content hosting for developers. With a single command, you can quickly deploy web apps and serve both static and dynamic content to a global CDN (content delivery network).


1 Answers

You can use firebase login:ci to work with continuous integration systems.

The command firebase login:ci will create a token, then you can use this token for deploying with:

firebase deploy --token

See the Github repo section on CI Systems for more information.

like image 114
David East Avatar answered Oct 23 '22 11:10

David East