From 853ff11ed76d9262197d9ae66b4d69c7a3da686e Mon Sep 17 00:00:00 2001 From: Sylvan Clebsch Date: Mon, 17 Oct 2016 10:05:57 +0100 Subject: [PATCH 1/2] Add F# App Service API example --- docs/fsharp/using-fsharp-on-azure/index.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/fsharp/using-fsharp-on-azure/index.md b/docs/fsharp/using-fsharp-on-azure/index.md index ecaa147c88204..58dd55f934b8b 100644 --- a/docs/fsharp/using-fsharp-on-azure/index.md +++ b/docs/fsharp/using-fsharp-on-azure/index.md @@ -51,6 +51,12 @@ Azure Storage is a base layer of storage services for modern applications that r Azure Storage can also be used in conjunction with Azure Functions through declarative configuration rather than explicit API calls. See [Azure Functions triggers and bindings for Azure Storage](https://azure.microsoft.com/en-us/documentation/articles/functions-bindings-storage/) which includes F# examples. +## Using Azure App Service with F# # + +[Azure App Service](https://azure.microsoft.com/en-us/services/app-service/) is a cloud platform to build powerful web and mobile apps that connect to data anywhere, in the cloud or on-premises. + +* [F# Azure Web API example](https://github.com/fsprojects/azure-webapi-example) + ## Using Azure DocumentDB with F# # [Azure DocumentDB](https://azure.microsoft.com/en-us/services/documentdb/) is a NoSQL service for highly available, globally distributed apps. @@ -69,7 +75,7 @@ Azure Event Hubs can be used with F# in two ways: 1. Through the creation of F# Azure Functions which are triggered by events. See [Azure Function triggers for Event Hubs](https://azure.microsoft.com/en-us/documentation/articles/functions-bindings-event-hubs/), or 2. By using the [.NET SDK for Azure](https://azure.microsoft.com/en-us/documentation/articles/event-hubs-csharp-ephcs-getstarted/). Note these examples are in C#. -## Using Azure Notifcation Hubs with F# # +## Using Azure Notification Hubs with F# # [Azure Notification Hubs](https://azure.microsoft.com/en-us/documentation/services/notification-hubs/) are multiplatform, scaled-out push infrastructure that enable you to send mobile push notifications from any backend (in the cloud or on-premises) to any mobile platform. From f86027d4d8e88f191f311c69cd418cf7d7de78fb Mon Sep 17 00:00:00 2001 From: Sylvan Clebsch Date: Mon, 17 Oct 2016 10:13:05 +0100 Subject: [PATCH 2/2] Add Hosting F# in a web application on Azure link --- docs/fsharp/using-fsharp-on-azure/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/fsharp/using-fsharp-on-azure/index.md b/docs/fsharp/using-fsharp-on-azure/index.md index 58dd55f934b8b..880ef72b75c4e 100644 --- a/docs/fsharp/using-fsharp-on-azure/index.md +++ b/docs/fsharp/using-fsharp-on-azure/index.md @@ -56,6 +56,7 @@ Azure Storage can also be used in conjunction with Azure Functions through decla [Azure App Service](https://azure.microsoft.com/en-us/services/app-service/) is a cloud platform to build powerful web and mobile apps that connect to data anywhere, in the cloud or on-premises. * [F# Azure Web API example](https://github.com/fsprojects/azure-webapi-example) +* [Hosting F# in a web application on Azure](https://github.com/isaacabraham/fsharp-demonstrator) ## Using Azure DocumentDB with F# #