{"id":30066231,"url":"https://github.com/leonardofaggiani/template","last_synced_at":"2026-05-19T10:30:55.818Z","repository":{"id":262555776,"uuid":"886982350","full_name":"LeonardoFaggiani/Template","owner":"LeonardoFaggiani","description":"Custom API Template is a lightweight solution for quickly generating consistent, clean, and standardized API architectures in .NET projects.","archived":false,"fork":false,"pushed_at":"2025-04-16T16:48:17.000Z","size":1750,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-22T06:48:32.375Z","etag":null,"topics":["api","custom-templates","dotnet-cli","netcore","netcore-template","nuget-package","tauri-react","tauri-v2","template-project"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LeonardoFaggiani.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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-11-12T00:49:25.000Z","updated_at":"2025-04-16T16:48:20.000Z","dependencies_parsed_at":"2024-12-16T03:18:34.431Z","dependency_job_id":"fc8108c9-a59b-4849-9a22-b7bc839ec101","html_url":"https://github.com/LeonardoFaggiani/Template","commit_stats":null,"previous_names":["leonardofaggiani/customhexagonaltemplate"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/LeonardoFaggiani/Template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LeonardoFaggiani%2FTemplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LeonardoFaggiani%2FTemplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LeonardoFaggiani%2FTemplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LeonardoFaggiani%2FTemplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LeonardoFaggiani","download_url":"https://codeload.github.com/LeonardoFaggiani/Template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LeonardoFaggiani%2FTemplate/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269381447,"owners_count":24407810,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-08T02:00:09.200Z","response_time":72,"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":["api","custom-templates","dotnet-cli","netcore","netcore-template","nuget-package","tauri-react","tauri-v2","template-project"],"created_at":"2025-08-08T07:23:11.237Z","updated_at":"2026-05-19T10:30:55.756Z","avatar_url":"https://github.com/LeonardoFaggiani.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"﻿# Project Purpose\n\nThe main idea behind this project was to provide a fast and low-cost solution for creating APIs with an architecture similar to what's commonly used in real-world jobs.\n\n# What Custom API Template solves\n\nThe biggest pain point was that every time a team needed to start a new API from scratch, they would base it off an existing one — which often resulted in mistakes such as incorrect namespaces, missing implementations, or misconfigured classes.\nWith the `Custom API Template`, you can consistently generate the same clean and standardized structure every time (fully customizable if needed), avoiding the recurring issues mentioned above.\n\nIt can be used via the dotnet CLI or through a UI to make the experience more user-friendly. 😉\n\n# Available Scripts\nIn the directory `Template.Wizard` run the following scripts:\n```bash\nnpm run build:css\n```\n```bash\nnpm run tauri dev\n```\nIf you want to create the installer just run:\n```bash\nnpm run build\n```\nYou can find the installer in `Template.Wizard\\src-tauri\\target\\release\\bundle`\n\n## Give a Star! ⭐\nIf you liked the project or if `Custom API Template` helped you, please give a star 😉\n\n# Installation\n\n### Command\n\n**🔧 Install Nuget Package**\n\n```bash\ndotnet new install Custom.Api.Template::1.0.2\n```\nParameters:\n\n- -o Location where the generated output will be placed.\n- -n \u003cname\u003e Name of the output to be created. If no name is specified, the name of the output directory will be used.\n- --Framework Generates the project using the selected .NET framework version.\n    Possible values: `net6.0`, `net7.0`, and `net8.0.`\n\u003e ⚠️ *Make sure the selected .NET framework is already installed on your machine.*\n- --IncludeSdk Includes an SDK project in the solution.\n- --IncludeDataTool Includes a SQL Server Data Tools (SSDT) database project.\n\u003e ⚠️ *If you include SSDT proyect, you must have `.NET Framework 4.8.1` installed.*\n- --IncludeUnitTests Includes a Unit Test project.\n- --Swagger Adds Swagger support to the project.\n- --HealthChecks Adds HealthChecks support to the project\n\n**🛠️ Template Parameters**\n```bash\ndotnet new CustomApiTemplate -o \"C://Example\" -n \"ProyectName\" --Framework \"net8.0\" --IncludeSdk true --IncludeDataTool true --IncludeUnitTests true --Swagger true --HealthChecks true\n```\n\n    \n**Mas información DotNet CLI:**\nhttps://learn.microsoft.com/es-es/dotnet/core/tools/dotnet\n\n### UI (Recommended)\n\nYou can download the Windows installer from the Release section\n\n📥 [Release 1.0.3](https://github.com/LeonardoFaggiani/Template/releases/tag/1.0.4)\n\nYou choose the project name, the location where you want to create it, and the different types of projects to include in your solution.\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"CustomApiTemplateUI.jpg\"/\u003e\n\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleonardofaggiani%2Ftemplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fleonardofaggiani%2Ftemplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleonardofaggiani%2Ftemplate/lists"}