1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 14:56:05 +00:00

gcloud: Tue Oct 18 11:38:19 UTC 2022

This commit is contained in:
Automated 2022-10-18 11:38:19 +00:00
parent 389ff42bae
commit 5c08d21169
Failed to extract signature
159 changed files with 4170 additions and 656 deletions

View file

@ -1,15 +1,15 @@
NAME
gcloud alpha emulators firestore - manage your local firestore emulator
gcloud alpha emulators firestore - manage your local Firestore emulator
SYNOPSIS
gcloud alpha emulators firestore COMMAND [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(ALPHA) This set of commands allows you to start and use a local firestore
(ALPHA) This set of commands allows you to start and use a local Firestore
emulator.
EXAMPLES
To start a local firestore emulator, run:
To start the local Firestore emulator, run:
$ gcloud alpha emulators firestore start
@ -22,13 +22,15 @@ COMMANDS
COMMAND is one of the following:
start
(ALPHA) Start a local firestore emulator.
(ALPHA) Start a local Firestore emulator.
NOTES
This command is currently in alpha and might change without notice. If this
command fails with API permission errors despite specifying the correct
project, you might be trying to access an API with an invitation-only early
access allowlist. This variant is also available:
access allowlist. These variants are also available:
$ gcloud emulators firestore
$ gcloud beta emulators firestore

View file

@ -1,18 +1,26 @@
NAME
gcloud alpha emulators firestore start - start a local firestore emulator
gcloud alpha emulators firestore start - start a local Firestore emulator
SYNOPSIS
gcloud alpha emulators firestore start [--host-port=HOST_PORT]
[--rules=RULES] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(ALPHA) This command starts a local firestore emulator.
(ALPHA) This command starts a local Firestore emulator.
EXAMPLES
To start a local firestore emulator, run:
To start the local Firestore emulator, run:
$ gcloud alpha emulators firestore start
To bind to a specific host and port, run:
$ gcloud alpha emulators firestore start --host-port=0.0.0.0:8080
To run the local Firestore emulator with a Firebase Rules set, run:
$ gcloud alpha emulators firestore start --rules=firestore.rules
FLAGS
--host-port=HOST_PORT
The host:port to which the emulator should be bound. Can take the form
@ -27,7 +35,9 @@ FLAGS
The default value is localhost:8080.
--rules=RULES
If set, all projects will use the security rules in this file
If set, all projects will use the security rules in this file. More
information on Firebase Rules and the syntax for this file is available
at https://firebase.google.com/docs/rules.
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
@ -41,7 +51,9 @@ NOTES
This command is currently in alpha and might change without notice. If this
command fails with API permission errors despite specifying the correct
project, you might be trying to access an API with an invitation-only early
access allowlist. This variant is also available:
access allowlist. These variants are also available:
$ gcloud emulators firestore start
$ gcloud beta emulators firestore start