Description
A tiny blog is written in .Net Core and supporting multi-theme and multi-language.
DotNetBlog alternatives and similar packages
Based on the "CMS" category.
Alternatively, view DotNetBlog alternatives based on common mentions on social networks and blogs.
-
Orchard Core
Orchard Core is an open-source modular and multi-tenant application framework built with ASP.NET Core, and a content management system (CMS) built on top of that framework. -
Umbraco
Umbraco is a free and open source .NET content management system helping you deliver delightful digital experiences. -
Orchard
Orchard is a free, open source, community-focused Content Management System built on the ASP.NET MVC platform. -
DotNetNuke
DNN (formerly DotNetNuke) is the leading open source web content management platform (CMS) in the Microsoft ecosystem. -
cofoundry
Cofoundry is an extensible and flexible .NET Core CMS & application framework focusing on code first development -
Piranha CMS
DISCONTINUED. Piranha is the fun, fast and lightweight .NET framework for developing cms-based web applications with an extra bite. It's built on ASP.NET MVC and Web Pages and is fully compatible with both Visual Studio and WebMatrix. http://piranhacms.org -
Mixcore CMS
๐ Mixcore CMS is an Future-Proof Enterprise Web CMS that supports both headless and decoupled to easily build any kinds of app/web app/all in all/customizable APIs built on top of ASP.NET Core / Dotnet Core. It is a completely open-source ASP.NET Core (Dotnet Core) CMS solution. https://mixcore.org -
mojoPortal
mojoPortal is an extensible, cross database, mobile friendly, web content management system (CMS) and web application framework written in C# ASP.NET. -
Puck CMS
Open source, easy to learn and use, cross platform .NET Core CMS. Fast, scalable, code-first, unobtrusive and extensible with powerful querying and Lucene integration. -
Dead Pixel Test
I've been looking for an appropriate dead pixel tester that runs in a browser, rather than a desktop app. I couldn't find one, so I made my own.
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of DotNetBlog or a related project?
README
DotNetBlog
A Tiny Blog Written in Asp.Net Core
Install:
Download the final release version from Release page
Windows:
run DotNetBlog.Web.exe
Linux:
sudo chmod +x DotNetBlog.Web
./DotNetBlog.Web
Start:
http://{YourBlogAddress}/install
to setup your blog for the first time.
How to Build and Run:
- Clone the repository
Restore the dependencies
dotnet restore
Build admin portal
cd src/DotNetBlog.Admin npm install webpack
Edit connection string
Open 'src/DotNetBlog.Web/App_Data/config.json' to specify you own connection string.
{ "database": "sqlite", "connectionString": "DataSource=App_Data/blog.db" //"database": "sqlserver", //"connectionString": "server=.\\SqlServer2008;database=DotNetBlog;uid=sa;pwd=123456;" }
DotNetBlog supports two kinds of database. You can set "database" to "sqite" or "sqlserver"
Run the project
dotnet run
Initialize the blog
You can access 'http://{YourBlogAddress}/install' to initialize the blog.