forked from tldr-pages/tldr
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,28 @@ | ||
# firebase | ||
|
||
> Firebase Command Line Interface (CLI) Tools. | ||
> Used to test, manage, and deploy your Firebase project from the command line. | ||
> Test, manage, and deploy Firebase projects from the command line. | ||
> More information: <https://github.com/firebase/firebase-tools>. | ||
- Login: | ||
- Login to <https://console.firebase.google.com>: | ||
|
||
`firebase login` | ||
|
||
- Display the help: | ||
|
||
`firebase help` | ||
|
||
- List existing firebase projects: | ||
- List existing Firebase projects: | ||
|
||
`firebase projects:list` | ||
|
||
- Setup a firebase in the current directory: | ||
- Start an interactive wizard to create a Firebase project in the current directory: | ||
|
||
`firebase init {{options}} {{feature}}` | ||
`firebase init` | ||
|
||
- Deploy code and assets to the project in the current directory: | ||
- Deploy code and assets to the current Firebase project: | ||
|
||
`firebase deploy` | ||
|
||
- Start a local server to statically host the current Firebase project's assets: | ||
|
||
`firebase serve` | ||
|
||
- Start an interactive wizard to open one of many links of the current Firebase project in the default web browser: | ||
|
||
`firebase open` |