{"id":25566564,"url":"https://github.com/pdmlab/dotnetcoresaastemplate","last_synced_at":"2026-01-27T05:31:48.435Z","repository":{"id":66175077,"uuid":"506154002","full_name":"PDMLab/DotNetCoreSaaSTemplate","owner":"PDMLab","description":null,"archived":false,"fork":false,"pushed_at":"2022-12-26T00:12:05.000Z","size":2123,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-01T11:42:37.295Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/PDMLab.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2022-06-22T08:04:17.000Z","updated_at":"2022-12-21T22:21:19.000Z","dependencies_parsed_at":"2023-02-20T23:16:01.313Z","dependency_job_id":null,"html_url":"https://github.com/PDMLab/DotNetCoreSaaSTemplate","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":"PDMLab/AspNetCoreMvcHtmxTemplate","purl":"pkg:github/PDMLab/DotNetCoreSaaSTemplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PDMLab%2FDotNetCoreSaaSTemplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PDMLab%2FDotNetCoreSaaSTemplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PDMLab%2FDotNetCoreSaaSTemplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PDMLab%2FDotNetCoreSaaSTemplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PDMLab","download_url":"https://codeload.github.com/PDMLab/DotNetCoreSaaSTemplate/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PDMLab%2FDotNetCoreSaaSTemplate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28803896,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T03:44:14.111Z","status":"ssl_error","status_checked_at":"2026-01-27T03:43:33.507Z","response_time":168,"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":[],"created_at":"2025-02-20T22:33:07.076Z","updated_at":"2026-01-27T05:31:48.428Z","avatar_url":"https://github.com/PDMLab.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AspNet (Core)  MVC Template\n\nThis is a GitHub Template for ASP.NET Core MVC using .NET 6.\n\nIt contains\n\n* a .NET 6 Solution\n* a ASP.NET Core MVC 6 project\n* HTMX\n* HTMX .NET extensions\n* TailwindCSS 3 including hot reload (JIT)\n* tmux/tmuxinator windows / panes for development\n\n## Usage\n\n### Create a new Repository\n\n* Create a new Repository from this Template as described [here](https://docs.github.com/en/repositories/creating-and-managing-repositories/creating-a-repository-from-a-template).\n* Clone your new repository locally\n\n### Run the solution\n\n#### First time\n\n```\nyarn install\ncd src/DotNetCoreSaaS\nyarn install\nlibman restore\n```\n\n#### Development\n\n```\nyarn start\n```\n\n`tmuxinator` starts a new session with three windows:\n\n##### Workspace\n![](assets/screenshot_iterm_workspace.png)\n\n##### App (.NET output)\n![](assets/screenshot_iterm_app.png)\n\n##### Frontend (tailwind build)\n![](assets/screenshot_item_tailwind.png)\n\nBrowse https://localhost:5001\n\n![](assets/screenshot.png)\n\n#### HTMX interaction\n\nHTMX usage is shown on the Registration view, even the password strength indicator is build with pure ASP.NET and HTMX (no additional JavaScript)\n\n![](assets/PasswordStrengthIndicator.gif)\n\n## Known issues\n\n* Not tested on Windows\n* JetBrains Rider code completion does not work for TailwindCSS 3 JIT mode in `.cshtml` files [currently](https://youtrack.jetbrains.com/issue/RIDER-58725).\n\n## Renaming solution / project / folders\n\nOf course, you want to rename the projects files to match our needs.\n\nYou can use these commands, e.g. `DotNetCoreSaaS`  gets renamed to `MyApp`:\n\n### Rename all references inside the files\n\n#### macOS\n\n```shell\nLC_ALL=C find . -type f -name '*.*' -not \\( -path './node_modules/*' -o -path './src/DotNetCoreSaaS/node_modules/*' -o -path './assets' \\) -exec sed -i '' 's|DotNetCoreSaaS|MyApp|g' {} \\;\n```\n\n#### Linux\n\n```shell\nLC_ALL=C find . -type f -name '*.*' -not \\( -path './node_modules/*' -o -path './src/DotNetCoreSaaS/node_modules/*' -o -path './assets' \\) -exec sed -i 's/DotNetCoreSaaS/MyApp/g' {} \\;\n```\n\n### Rename files and folders\n\n#### macOS and Linux\n\n```bash\nfind . -depth -name \"*DotNetCoreSaaS*\" | \\\nwhile IFS= read -r ent; do mv $ent ${ent%DotNetCoreSaaS*}MyApp${ent##*DotNetCoreSaaS}; done\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpdmlab%2Fdotnetcoresaastemplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpdmlab%2Fdotnetcoresaastemplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpdmlab%2Fdotnetcoresaastemplate/lists"}