You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cloud_functions/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ You will want to call `flutterfire configure` before running this code so your p
10
10
11
11
In testing firebase_functions, we encourage you to try using the [emulators](https://firebase.google.com/docs/emulator-suite) before deploying to production. We have written a V1 function for your use. If you are interested in handling multiple requests concurrently and the power of [eventarc](https://cloud.google.com/eventarc/docs) + [cloudrun](https://cloud.google.com/run) function enviornments, we encourage you to look into [V2 functions](https://firebase.google.com/docs/functions/beta).
12
12
13
-
To start running the functions locally in this folder, run `firebase emulators:start`. This will automatically start the emulator suite to test the functions locally.
13
+
To start running the functions locally in this folder, run `npm run build && firebase emulators:start`. This will automatically start the emulator suite to test the functions locally.
14
14
15
15
## Dart code
16
16
@@ -24,4 +24,4 @@ FirebaseFunctions.instance
24
24
.call();
25
25
```
26
26
27
-
You can optionally supply a [`Map`](https://api.flutter.dev/flutter/dart-core/Map-class.html) object to the call method which will be passed as arguments to the cloud function. In this quickstart, `word` is the parameter that we are passing to the cloud function.
27
+
You can optionally supply a [`Map`](https://api.flutter.dev/flutter/dart-core/Map-class.html) object to the call method which will be passed as arguments to the cloud function. In this quickstart, `word` is the parameter that we are passing to the cloud function.
0 commit comments