{"id":28421174,"url":"https://github.com/HoodDigital/Hood","last_synced_at":"2025-06-29T06:31:16.878Z","repository":{"id":39801127,"uuid":"343795717","full_name":"HoodDigital/Hood","owner":"HoodDigital","description":"A fully customisable content management system built in ASP.NET Core 5 \u0026 Bootstrap 5.","archived":false,"fork":false,"pushed_at":"2024-05-06T14:53:47.000Z","size":71596,"stargazers_count":1,"open_issues_count":5,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-05T06:51:37.827Z","etag":null,"topics":["asp-net-core","cms","csharp","hood","myget","nuget","scss"],"latest_commit_sha":null,"homepage":"https://cms.hooddigital.com","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/HoodDigital.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":"2021-03-02T14:07:33.000Z","updated_at":"2024-03-05T06:43:35.000Z","dependencies_parsed_at":"2024-05-06T16:16:03.537Z","dependency_job_id":"71c92872-5605-433e-baf2-9ba7681576b0","html_url":"https://github.com/HoodDigital/Hood","commit_stats":{"total_commits":1133,"total_committers":2,"mean_commits":566.5,"dds":0.08384819064430715,"last_synced_commit":"867559e8cf94a0f83afc6f23d1b8d1d01a23da0c"},"previous_names":["hooddigital/hoodcms"],"tags_count":171,"template":false,"template_full_name":null,"purl":"pkg:github/HoodDigital/Hood","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HoodDigital%2FHood","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HoodDigital%2FHood/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HoodDigital%2FHood/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HoodDigital%2FHood/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HoodDigital","download_url":"https://codeload.github.com/HoodDigital/Hood/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HoodDigital%2FHood/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261273875,"owners_count":23133836,"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","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":["asp-net-core","cms","csharp","hood","myget","nuget","scss"],"created_at":"2025-06-05T05:12:04.490Z","updated_at":"2025-06-29T06:31:16.871Z","avatar_url":"https://github.com/HoodDigital.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hood CMS\n[![GitHub release (Latest by date including pre-releases)](https://img.shields.io/github/v/release/HoodDigital/Hood?include_prereleases\u0026label=Latest%20Release)](https://github.com/HoodDigital/Hood/releases)\n\nA fully customisable content management system built in ASP.NET Core 5 \u0026 Bootstrap 5.\n\n## Clone demo project\n\nClone the demo ASP.NET Core 6 Web Project from our repository [here](https://github.com/HoodDigital/Hood.Demo). Or enter the following command in Git Bash or your command prompt.\n```\n$ git clone https://github.com/HoodDigital/Hood.Demo\n```\n\n## Create new ASP.NET Core 6 Web Project via dotnet CLI\n\nComing soon.\n\n## Nuget Installation \n[![NuGet](https://img.shields.io/nuget/v/hood?label=NuGet%20Stable)](https://www.nuget.org/packages/Hood/)\n[![MyGet Latest](https://img.shields.io/myget/hood/vpre/hood?label=MyGet)](https://www.myget.org/feed/hood/package/nuget/Hood)\n\nInstall Hood CMS via Package Manager.\n```\n\u003e Install-Package Hood\n```\nor via .NET CLI\n```\n\u003e dotnet add package Hood\n```\n\n## Client Side Code\n[![npm Package](https://img.shields.io/npm/v/hoodcms)](https://www.npmjs.com/package/hoodcms)\n\nThe client side code is not required to run Hood CMS as all required JS/CSS are served via jsdelivr. However, if you want to extend or modify the client side code, you can download this npm package, which contains the required distribution CSS and JavaScript, as well as source SCSS and TypeScript files. \n\nhttps://www.npmjs.com/package/hoodcms\n\nTo install Hood CMS client side code via NPM.\n```\n\u003e npm install hoodcms\n```\nor\n```\n\u003e yarn add hoodcms\n```\n\n\u003e To use your own client side code, you will also need to update script/link references in your theme's HTML or Razor C# files to use your own version of the code, rather than the CDN.\n\n## Database Installation/Update\n\nEnsure your database is up to date with the version of Hood CMS that you are using. \n### Fresh installation\n\n1. Create your database \n2. Execute file `/sql/latest.sql`.\n\n### Upgrading from previous versions \u003c `v6.1.x`\n\n1. Update your code to the latest version of Hood `v6.0.x`\n2. Migrate your database to match the current code using ef core migrations.\n3. Run the script `/sql/6.0/migrate.sql` to migrate your database to script based migrations.\n4. Run the update scripts for each minor version, sequentially until you reach your desired version.\n   For example to update to `v6.2.x`, run the script `/sql/6.1/update.sql`, then run the script `/sql/6.2/update.sql`.\n\n\n## Full documentation\nDocumentation is a work in progress!\n\nAlso, feel free to add your issues or pull requests to our GitHub, we always welcome contributions!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FHoodDigital%2FHood","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FHoodDigital%2FHood","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FHoodDigital%2FHood/lists"}