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
#Customer intent: As a developer, I need to know how to use the Azure Developer CLI to create and deploy my function code securely to a new function app in the Flex Consumption plan in Azure by using azd templates and the azd up command.
@@ -254,14 +254,21 @@ py -m venv .venv
254
254
func start
255
255
```
256
256
::: zone-end
257
-
::: zone pivot="programming-language-java"
257
+
::: zone pivot="programming-language-java"
258
258
```console
259
259
mvn clean package
260
260
mvn azure-functions:run
261
261
```
262
262
::: zone-end
263
-
::: zone pivot="programming-language-typescript"
263
+
::: zone pivot="programming-language-javascript"
264
264
```console
265
+
npm install
266
+
func start
267
+
```
268
+
::: zone-end
269
+
::: zone pivot="programming-language-typescript"
270
+
```console
271
+
npm install
265
272
npm start
266
273
```
267
274
::: zone-end
@@ -273,11 +280,16 @@ py -m venv .venv
273
280
<http://localhost:7071/api/httpget>
274
281
275
282
1. From a new terminal or command prompt window, run this `curl` command to send a POST request with a JSON payload to the `httppost` endpoint:
276
-
283
+
::: zone pivot="programming-language-csharp, programming-language-powershell,programming-language-python,programming-language-javascript"
This command reads JSON payload data from the `testdata.json` project file. You can find examples of both HTTP requests in the `test.http` project file.
282
294
283
295
1. When you're done, press Ctrl+C in the terminal window to stop the `func.exe` host process.
0 commit comments