{"id":28275083,"url":"https://github.com/quran-yeamen/azure-serverless-function-demo","last_synced_at":"2026-04-26T16:32:40.906Z","repository":{"id":291785983,"uuid":"956658612","full_name":"quran-yeamen/azure-serverless-function-demo","owner":"quran-yeamen","description":"Simple Azure Function App using C# to handle HTTP triggers in a serverless environment.","archived":false,"fork":false,"pushed_at":"2025-05-06T13:56:49.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-16T12:52:49.721Z","etag":null,"topics":["azure-functions","cloud","csharp","dotnet","http-trigger","serverless"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/quran-yeamen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-03-28T16:22:41.000Z","updated_at":"2025-05-06T14:32:05.000Z","dependencies_parsed_at":"2025-05-06T15:10:38.326Z","dependency_job_id":null,"html_url":"https://github.com/quran-yeamen/azure-serverless-function-demo","commit_stats":null,"previous_names":["quran-yeamen/cloud_pract2"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/quran-yeamen/azure-serverless-function-demo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quran-yeamen%2Fazure-serverless-function-demo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quran-yeamen%2Fazure-serverless-function-demo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quran-yeamen%2Fazure-serverless-function-demo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quran-yeamen%2Fazure-serverless-function-demo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/quran-yeamen","download_url":"https://codeload.github.com/quran-yeamen/azure-serverless-function-demo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quran-yeamen%2Fazure-serverless-function-demo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32305035,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T09:34:17.070Z","status":"ssl_error","status_checked_at":"2026-04-26T09:34:00.993Z","response_time":129,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["azure-functions","cloud","csharp","dotnet","http-trigger","serverless"],"created_at":"2025-05-21T03:13:29.570Z","updated_at":"2026-04-26T16:32:40.893Z","avatar_url":"https://github.com/quran-yeamen.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\n```markdown\n# Azure Serverless Function App – `cloud_pract2`\n\nThis project demonstrates a basic **Azure Function App** written in **C#** using **.NET Core**,\ndesigned to respond to HTTP-triggered events. It serves as a foundational example of how to create, configure,\nand deploy serverless applications using Microsoft Azure's cloud platform.\n\n---\n\n##  Features\n\n-  **HTTP Trigger**: Responds to incoming HTTP requests with customizable messages.\n-  **Serverless Architecture**: Built on Azure Functions for lightweight, event-driven execution.\n-  **.NET Project Structure**: Organized using standard `.csproj` format.\n-  **Configurable Settings**: Includes `host.json` and `local.settings.json` for runtime and local environment setup.\n\n---\n\n## Tech Stack\n\n- **Language:** C#  \n- **Framework:** .NET Core  \n- **Cloud Platform:** Azure Functions  \n- **Tools:** Visual Studio / VS Code, Azure CLI\n\n---\n\n##  Project Structure\n\n```\n\ncloud\\_pract2/\n├── FunctionApp1/\n│   ├── Function1.cs             # Main Azure Function (HTTP Trigger)\n│   ├── FunctionApp1.csproj      # Project file\n│   ├── host.json                # Runtime configuration\n│   ├── local.settings.json      # Local development settings (not uploaded to Git)\n\n````\n\n---\n\n##  Setup Instructions\n\n1. **Clone the repository**\n   ```bash\n   git clone https://github.com/quran-yeamen/cloud_pract2.git\n   cd cloud_pract2/FunctionApp1\n````\n\n2. **Install .NET SDK**\n   Make sure you have [.NET Core SDK](https://dotnet.microsoft.com/download) installed.\n\n3. **Run the function locally**\n\n   ```bash\n   func start\n   ```\n\n4. **Test the endpoint**\n   After starting, visit:\n\n   ```\n   http://localhost:7071/api/Function1?name=Quran\n   ```\n\n---\n\n##  Sample Request\n\n**GET Request:**\n\n```\nGET /api/Function1?name=Quran\n```\n\n**Response:**\n\n```json\nHello, Quran. This HTTP triggered function executed successfully.\n```\n\n---\n\n##  Deployment (Optional)\n\nYou can deploy the function directly to Azure using:\n\n```bash\nfunc azure functionapp publish \u003cYourFunctionAppName\u003e\n```\n\nMake sure your Azure CLI is authenticated and set to the correct subscription.\n\n---\n\n## Notes\n\n* `local.settings.json` is excluded from source control for security.\n* The project can be extended to support additional triggers like Blob, Timer, or Queue.\n\n---\n\n## Contact\n\nFor questions, feel free to connect:\n**Quran Yeamen**\n[LinkedIn](https://www.linkedin.com/in/quran-yeamen/) | [GitHub](https://github.com/quran-yeamen)\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquran-yeamen%2Fazure-serverless-function-demo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fquran-yeamen%2Fazure-serverless-function-demo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquran-yeamen%2Fazure-serverless-function-demo/lists"}