{"id":25514551,"url":"https://github.com/anibulus/azure.function.net","last_synced_at":"2026-05-09T04:31:09.139Z","repository":{"id":277324988,"uuid":"848450743","full_name":"Anibulus/Azure.Function.Net","owner":"Anibulus","description":"Azure Function allows to trigger actions in many ways and this project is a sample in .Net 6/8","archived":false,"fork":false,"pushed_at":"2024-09-23T18:07:28.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-29T03:59:16.272Z","etag":null,"topics":["azure-functions","csharp","dotnet-core","function"],"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/Anibulus.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}},"created_at":"2024-08-27T19:30:16.000Z","updated_at":"2024-09-23T18:12:20.000Z","dependencies_parsed_at":"2025-02-13T11:17:48.555Z","dependency_job_id":"f40fda4e-9c79-41b9-8f6a-1560d2f341ce","html_url":"https://github.com/Anibulus/Azure.Function.Net","commit_stats":null,"previous_names":["anibulus/azure.function.net"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Anibulus/Azure.Function.Net","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Anibulus%2FAzure.Function.Net","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Anibulus%2FAzure.Function.Net/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Anibulus%2FAzure.Function.Net/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Anibulus%2FAzure.Function.Net/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Anibulus","download_url":"https://codeload.github.com/Anibulus/Azure.Function.Net/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Anibulus%2FAzure.Function.Net/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32807142,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","csharp","dotnet-core","function"],"created_at":"2025-02-19T12:19:33.965Z","updated_at":"2026-05-09T04:31:09.122Z","avatar_url":"https://github.com/Anibulus.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Sample Azure Function\n\n## Setup\n\n### The simple way\n\nTo create the solution you first need to install this template\n```bash\ndotnet new install Microsoft.Azure.Functions.Templates\n```\n\nAnd now you can use create a new project with cli\n```bash\ndotnet new func\n```\n\n## The hard way\n\nThis way allows to create more complex functions with a kit of azure.\n\nTo excecute Azure Function Core Tools, for my case I had to download [Azure function core tools](https://github.com/Azure/azure-functions-core-tools?tab=readme-ov-file#other-linux-distributions)\n\n\nIf you want to add it to path, use commands bellow:\n```bash\nsudo mv azure-functions-cli /usr/azure/functions-cli\n```\n\n```bash\nsudo nano ~/.bashrc\n```\n\nThen type the path of your tool kit\n```bash\nexport PATH=\"$PATH:/usr/azure-functions-cli\"\n```\n\nThen run the coniguration\n```bash\nsource ~/.bashrc\n```\n\nCheck func is added to PATH\n```bash\nwhich func\n```\n\n## Create a project \n\nNow you can use this commands to create your own [Azure Function Project](https://learn.microsoft.com/en-us/azure/azure-functions/create-first-function-cli-csharp?tabs=linux%2Cazure-cli)\n\nCreate a project with default config:\n```bash\nfunc init MiNuevoProyecto --dotnet\n```\n\nCreate a new project with target framework:\n```bash\nfunc init LocalFunctionProj --worker-runtime dotnet-isolated --target-framework net8.0\n```\n\n## Create functions\n\nfunc new \n```bash\nfunc new --name MyHttpFunction --template \"HttpTrigger\"\n```\n\n\nThe types you can create are:\n- `HttpTrigger`\n- `BlobTrigger`\n- `QueueTrigger`\n- `TimerTrigger`\n- `EventGridTrigger`\n- `EventHubTrigger`\n- `CosmosDBTrigger`\n- `ServiceBusQueueTrigger`\n- `ServiceBusTopicTrigger`\n- `DurableFunctionsActivity`\n- `DurableFunctionsOrchestrator`\n- `DurableFunctionsEntity`\n- `IoTHubTrigger`\n- `SignalRTrigger`\n\nAlso you can use `func new` to have a console wizzard\n\n## Run Azure fucnton\n\nTo run locally, use:\n```bash\nfunc start\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanibulus%2Fazure.function.net","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanibulus%2Fazure.function.net","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanibulus%2Fazure.function.net/lists"}