README updates and changelog for v3.5.0

This commit is contained in:
Michael Bleigh
2017-03-03 16:35:44 -08:00
committed by GitHub
parent fcb3f8fed4
commit a144452794
2 changed files with 30 additions and 16 deletions

View File

@@ -57,22 +57,6 @@ Command | Description
**deploy** | Deploys your Firebase project. Relies on `firebase.json` configuration and your local project folder.
**serve** | Start a local web server with your Firebase Hosting configuration. Relies on `firebase.json`.
### Database Commands
Command | Description
------- | -----------
**database:get** | Fetch data from the current project's database and display it as JSON. Supports querying on indexed data.
**database:set** | Replace all data at a specified location in the current project's database. Takes input from file, STDIN, or command-line argument.
**database:update** | Perform a partial update at a specified location in the current project's database. Takes input from file, STDIN, or command-line argument.
**database:push** | Push new data to a list at a specified location in the current project's database. Takes input from file, STDIN, or command-line argument.
**database:remove** | Delete all data at a specified location in the current project's database.
### Hosting Commands
Command | Description
------- | -----------
**hosting:disable** | Stop serving Firebase Hosting traffic for the active project. A "Site Not Found" message will be displayed at your project's Hosting URL after running this command.
### Auth Commands
Command | Description
@@ -82,6 +66,33 @@ Command | Description
Detailed doc is [here](https://firebase.google.com/docs/cli/auth).
### Database Commands
Command | Description
------- | -----------
**database:get** | Fetch data from the current project's database and display it as JSON. Supports querying on indexed data.
**database:set** | Replace all data at a specified location in the current project's database. Takes input from file, STDIN, or command-line argument.
**database:push** | Push new data to a list at a specified location in the current project's database. Takes input from file, STDIN, or command-line argument.
**database:remove** | Delete all data at a specified location in the current project's database.
**database:update** | Perform a partial update at a specified location in the current project's database. Takes input from file, STDIN, or command-line argument.
**database:profile** | Profile database usage and generate a report.
### Cloud Functions Commands
Command | Description
------- | -----------
**functions:log** | Read logs from deployed Cloud Functions.
**functions:config:set** | Store runtime configuration values for the current project's Cloud Functions.
**functions:config:get** | Retrieve existing configuration values for the current project's Cloud Functions.
**functions:config:unset** | Remove values from the current project's runtime configuration.
**functions:config:clone** | Copy runtime configuration from one project environment to another.
### Hosting Commands
Command | Description
------- | -----------
**hosting:disable** | Stop serving Firebase Hosting traffic for the active project. A "Site Not Found" message will be displayed at your project's Hosting URL after running this command.
## Using with CI Systems
The Firebase CLI requires a browser to complete authentication, but is fully

View File

@@ -0,0 +1,3 @@
feature - Adds Cloud Functions for Firebase support, including function deployment and `functions:*` commands.
feature - `database:profile` command provides performance profiling insights for the Realtime Database.
change - Some new features of the CLI require additional authorization scopes. You may be asked to sign in again with `firebase login --reauth`.