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 application framework. -
Orchard
Free, open source, community-focused project aimed at delivering applications and reusable components on the ASP.NET platform -
DotNetNuke
DNN Platform is our free, open source web CMS and the foundation of every professional DNN solution. Over 750,000 organizations worldwide have built websites powered by the DNN Platform. -
Piranha CMS
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 -
cofoundry
Cofoundry is an extensible and flexible .NET Core CMS & application framework focusing on code first development -
Mixcore CMS
๐ Mixcore CMS is a best open source CMS that support both headless and decoupled to easily build any kinds of app/web app/customisable 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, cross platform .NET Core CMS. Fast, scalable, code-first, unobtrusive and extensible with powerful querying and Lucene integration.
Pixel-Perfect Multi-Platform Applications with C# and XAML
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
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.