Skip to content

Commit

Permalink
added docs for emulatorPort
Browse files Browse the repository at this point in the history
  • Loading branch information
lupas committed Dec 7, 2019
1 parent 43e059b commit a932e10
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion packages/docs/options/README.md
Expand Up @@ -250,7 +250,8 @@ functions: true
// or

functions: {
location: 'us-central1'
location: 'us-central1',
emulatorPort: 12345
}
```

Expand All @@ -261,6 +262,15 @@ functions: {

More information [here](https://firebase.google.com/docs/functions/locations).

#### emulatorPort

- Type: `Integer`
- Default: `null`

Sets up `useFunctionsEmulator("http://localhost:EMULATOR_PORT")` to point to a Cloud Functions emulator running locally instead of the productive one.

More information in the official Firebase [API Docs](https://firebase.google.com/docs/reference/android/com/google/firebase/functions/FirebaseFunctions.html#useFunctionsEmulator(java.lang.String)) and [Functions Docs](https://firebase.google.com/docs/functions/local-emulator).

### storage

Initializes Firebase Storage and makes it available via `$fireStorage` and `$fireStorageObj`.
Expand Down

1 comment on commit a932e10

@Ferrasil
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

馃挋

Please sign in to comment.