# azure-functions **Repository Path**: leoyer/azure-functions ## Basic Information - **Project Name**: azure-functions - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-03-31 - **Last Updated**: 2025-03-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Azure Functions Java Project This is an Azure Functions project created with Java. ## Prerequisites - Java 11 or later - Maven 3.0 or later - Azure Functions Core Tools - Azure CLI (optional) ## Getting Started 1. Build the project: ```bash mvn clean package ``` 2. Start the function locally: ```bash mvn azure-functions:run ``` ## Project Structure - `src/main/java/com/example/function/` - Contains the function implementations - `pom.xml` - Maven project configuration - `host.json` - Global configuration file ## Development - Use `mvn clean package` to build the project - Use `mvn azure-functions:run` to run the function locally - Use `mvn azure-functions:deploy` to deploy to Azure ## Function Details The project includes an example HTTP trigger function that: - Accepts GET and POST requests - Expects a "name" parameter in query string or request body - Returns a greeting message with the provided name