Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fluentcms/fluentcms
ASP.NET Core Blazor Content Management System (CMS)
https://github.com/fluentcms/fluentcms
asp-net-core asp-net-core-cms aspnet-core aspnetcore blazor blazor-application blazor-client blazor-client-side blazor-server cms cms-backend cms-framework csharp flowbite flowbite-ui headless-cms tailwind tailwind-css tailwind-css-theme tailwindcss
Last synced: 6 days ago
JSON representation
ASP.NET Core Blazor Content Management System (CMS)
- Host: GitHub
- URL: https://github.com/fluentcms/fluentcms
- Owner: fluentcms
- License: mit
- Created: 2023-10-20T14:13:45.000Z (over 1 year ago)
- Default Branch: dev
- Last Pushed: 2024-10-30T07:04:25.000Z (3 months ago)
- Last Synced: 2024-10-30T07:49:33.006Z (3 months ago)
- Topics: asp-net-core, asp-net-core-cms, aspnet-core, aspnetcore, blazor, blazor-application, blazor-client, blazor-client-side, blazor-server, cms, cms-backend, cms-framework, csharp, flowbite, flowbite-ui, headless-cms, tailwind, tailwind-css, tailwind-css-theme, tailwindcss
- Language: C#
- Homepage: https://fluentcms.com
- Size: 8 MB
- Stars: 190
- Watchers: 7
- Forks: 37
- Open Issues: 70
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
FluentCMS: ASP.NET Core Blazor-Based Content Management System (CMS)
![Demo Gif](./docs/resources/demo.gif)
## Table of contents
- [Introduction](#introduction)
- [Connect with us](#connect-with-us)
- [Features](#features)
- [Supported Databases](#supported-databases)
- [Getting Started](#getting-started)
- [Prerequisites](#prerequisites)
- [Installation](#installation)
- [Component Library](#component-library)
- [Documentation](#documentation)
- [Contributing](#contributing)
- [License](#license)## Introduction
FluentCMS is a modern Content Management System (CMS) built on the powerful ASP.NET Core and the innovative Blazor technology. FluentCMS assists content writers in crafting content more efficiently. Designed to be fast, flexible, and user-friendly, it not only serves as a traditional content-based CMS but also excels as a headless CMS, making it perfect for a diverse range of digital applications.FluentCMS is an open-source project, and we welcome contributions from the community. If you're interested in helping us improve FluentCMS, please read our [CONTRIBUTING.md](./CONTRIBUTING.md) guide.
## Connect with us
## Features
- **Blazing Fast**: Built on top of Blazor components for client-side operations.
- **Extensible**: Easily extend with custom plugins and themes.
- **SEO Friendly**: Built-in SEO tools to optimize content for search engines.
- **Responsive**: Mobile-friendly out of the box.
- **Modern UI**: Sleek and intuitive dashboard for content management.
- **Headless Capabilities**: API-first design for decoupled applications.
- **Multi-Language Support**: Easily manage content in multiple languages.
- **Role-Based Access Control**: Granular control over user permissions.
- **Media Management**: Upload, organize, and manage media files.
- **Content Type Definition**: Define custom content types with various fields.
- **Content Management**: Create, edit, and manage content with ease.
- **User Management**: Manage users and roles with ease.
- **Role Management**: Create and manage roles with custom permissions.
- **Application Settings**: Configure application settings with ease.
- **Multiple Site Support**: Manage multiple sites from a single dashboard.
- **Page Management**: Create and manage pages with custom layouts.
- **Plugin Management**: Extend functionality with custom plugins.## Supported Databases
- LiteDB
- MongoDB
- MySQL (coming soon)
- SQL Server (coming soon)
- SQLite (coming soon)
- PostgreSQL (coming soon)## Getting Started
### Prerequisites
- .NET SDK 9.0 or later
### Installation
1. Clone the repository:
```bash
git clone https://github.com/fluentcms/FluentCMS.git
```2. Navigate to the project directory:
```bash
cd FluentCMS/src/FluentCMS/
```
3. Configure the DatabaseFluentCMS supports multiple databases. Configure the desired database by following these steps:
* **Set the Database in `appsettings.json`:**
Define your database type under `Database` section. For example, to use LiteDB:```json
"Database": "LiteDB"
```
Available options are: `LiteDb`, `MongoDB`, `SQLite`, `SQLServer`, `MySQL`, `PostgreSQL`* **Provide Connection Strings in `appsettings.json`:**
Set your connection string under "ConnectionStrings" in appsettings.json for the desired database:```json
"ConnectionStrings": {
"DefaultConnection": "Filename=./fluentcms.db"
}
```4. Run the application:
```bash
dotnet run
```5. Visit `http://localhost:5000` in your browser.
## Component Library
This project includes a custom, independent Blazor-based component library styled with flowbite's Design System. You can learn more in [Component Library's README file](/src/Frontend/FluentCMS.Web.UI.Components/).
## Documentation
For more information on how to use FluentCMS, please refer to our [documentation](./docs/README.md). We are actively working on expanding our documentation to provide more detailed information.
## Contributing
We welcome contributions! If you're interested in improving FluentCMS, please read our [CONTRIBUTING.md](./CONTRIBUTING.md) guide.
![Alt](https://repobeats.axiom.co/api/embed/908c321e4de115a715f2a3ed981c6e00bfbcea62.svg "Repobeats analytics image")
## License
This project is licensed under the MIT License - see the [LICENSE](./LICENSE) file for details.