diff --git a/README.md b/README.md index d801b02..3e0898a 100644 --- a/README.md +++ b/README.md @@ -102,23 +102,23 @@ async def get_name(name: str): 3. If you are using VS Code for development, click the "Run and Debug" button or follow [the instructions for running a function locally](https://docs.microsoft.com/azure/azure-functions/create-first-function-vs-code-python#run-the-function-locally). Outside of VS Code, follow [these instructions for using Core Tools commands directly to run the function locally](https://docs.microsoft.com/azure/azure-functions/functions-run-local?tabs=v4%2Cwindows%2Cpython%2Cportal%2Cbash#start). 4. Once the function is running, test the function at the local URL displayed in the Terminal panel: -======= + ```log Functions: http_app_func: [GET,POST,DELETE,HEAD,PATCH,PUT,OPTIONS] http://localhost:7071//{*route} ``` - ```log - Functions: - WrapperFunction: [GET,POST] http://localhost:7071/{*route} - ``` +```log +Functions: + WrapperFunction: [GET,POST] http://localhost:7071/{*route} +``` - Try out URLs corresponding to the handlers in the app, both the simple path and the parameterized path: +Try out URLs corresponding to the handlers in the app, both the simple path and the parameterized path: - ``` - http://localhost:7071/sample - http://localhost:7071/hello/YourName - ``` +``` +http://localhost:7071/sample +http://localhost:7071/hello/YourName +``` ### Deploying to Azure