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:
parent
389ff42bae
commit
5c08d21169
159 changed files with 4170 additions and 656 deletions
33
gcloud/emulators/firestore/help
Normal file
33
gcloud/emulators/firestore/help
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
NAME
|
||||
gcloud emulators firestore - manage your local Firestore emulator
|
||||
|
||||
SYNOPSIS
|
||||
gcloud emulators firestore COMMAND [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
This set of commands allows you to start and use a local Firestore
|
||||
emulator.
|
||||
|
||||
EXAMPLES
|
||||
To start the local Firestore emulator, run:
|
||||
|
||||
$ gcloud emulators firestore start
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
start
|
||||
Start a local Firestore emulator.
|
||||
|
||||
NOTES
|
||||
These variants are also available:
|
||||
|
||||
$ gcloud alpha emulators firestore
|
||||
|
||||
$ gcloud beta emulators firestore
|
||||
|
||||
56
gcloud/emulators/firestore/start
Normal file
56
gcloud/emulators/firestore/start
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
NAME
|
||||
gcloud emulators firestore start - start a local Firestore emulator
|
||||
|
||||
SYNOPSIS
|
||||
gcloud emulators firestore start [--host-port=HOST_PORT] [--rules=RULES]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
This command starts a local Firestore emulator.
|
||||
|
||||
EXAMPLES
|
||||
To start the local Firestore emulator, run:
|
||||
|
||||
$ gcloud emulators firestore start
|
||||
|
||||
To bind to a specific host and port, run:
|
||||
|
||||
$ gcloud emulators firestore start --host-port=0.0.0.0:8080
|
||||
|
||||
To run the local Firestore emulator with a Firebase Rules set, run:
|
||||
|
||||
$ gcloud 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
|
||||
of a single address (hostname, IPv4, or IPv6) and/or port:
|
||||
|
||||
[ADDRESS][:PORT]
|
||||
|
||||
In this format you must enclose IPv6 addresses in square brackets: e.g.
|
||||
|
||||
[2001:db8:0:0:0:ff00:42:8329]:8080
|
||||
|
||||
The default value is localhost:8080.
|
||||
|
||||
--rules=RULES
|
||||
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,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
NOTES
|
||||
These variants are also available:
|
||||
|
||||
$ gcloud alpha emulators firestore start
|
||||
|
||||
$ gcloud beta emulators firestore start
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue