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: articles/azure-functions/functions-create-maven-intellij.md
+26-1Lines changed: 26 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,6 +94,29 @@ To debug the project locally, follow these steps:
94
94
95
95
:::image type="content" source="media/functions-create-first-java-intellij/local-debug-functions-break.png" alt-text="Local debug function app break." lightbox="media/functions-create-first-java-intellij/local-debug-functions-break.png":::
96
96
97
+
## Create the function app in Azure
98
+
99
+
In this section, you will create a function app and related resources in your Azure subscription.
100
+
101
+
1. Right-click on Function App within Azure Explorer in your IDEA and select **Create**.
102
+
103
+
2. Check the box for **More Settings** and provide the following information at the prompts:
104
+
105
+
|Prompt|Selection|
106
+
|--|--|
107
+
|**Subscription**| Choose the subscription to use. |
108
+
|**Resource Group**|Choose the resource group for your Function App.|
109
+
|**Name**| Specify the name for a new Function App. Here you can accept the default value. |
110
+
|**Platform**| Choose the platform with 'Windows-Java 17' or another platform as appropriate. |
111
+
|**Region**| For better performance, choose a [region](https://azure.microsoft.com/regions/) near you. |
112
+
|**Hosting Options**| Choose the Hosting Options for your Function App. |
113
+
|**Plan**| Choose the App Service plan pricing tier you want to use. Or click **+** to create a new App Service plan. |
114
+
115
+
> [!IMPORTANT]
116
+
> The Flex Consumption plan is [in preview](../../../includes/functions-flex-preview-note.md). You can select the option to choose **Flex Consumption** in this step.
117
+
118
+
3. Click **OK**. A notification will be displayed after your function app is created.
119
+
97
120
## Deploy your project to Azure
98
121
99
122
To deploy your project to Azure, follow these steps:
@@ -102,12 +125,14 @@ To deploy your project to Azure, follow these steps:
102
125
103
126
:::image type="content" source="media/functions-create-first-java-intellij/deploy-functions-to-azure.png" alt-text="Deploy project to Azure." lightbox="media/functions-create-first-java-intellij/deploy-functions-to-azure.png":::
104
127
105
-
1.If you don't have any Function App yet, click **+** in the *Function* line. Type in the function app name and choose proper platform. Here you can accept the default value. Click **OK** and the new function app you created will be automatically selected. Click **Run** to deploy your functions.
128
+
1.You can select the Function App from the previous section. To create a new one, click **+** in the *Function* line. Type in the function app name and choose proper platform. Here you can accept the default value. Click **OK** and the new function app you created will be automatically selected. Click **Run** to deploy your functions.
106
129
107
130
:::image type="content" source="media/functions-create-first-java-intellij/deploy-functions-create-app.png" alt-text="Create function app in Azure." lightbox="media/functions-create-first-java-intellij/deploy-functions-create-app.png":::
108
131
109
132
:::image type="content" source="media/functions-create-first-java-intellij/deploy-functions-log.png" alt-text="Deploy function app to Azure log." lightbox="media/functions-create-first-java-intellij/deploy-functions-log.png":::
110
133
134
+
135
+
111
136
## Manage function apps from IDEA
112
137
113
138
To manage your function apps with **Azure Explorer** in your IDEA, follow these steps:
0 commit comments