/simple-blog

Simple Blog

Primary LanguageC#GNU General Public License v3.0GPL-3.0

Simple Blog

Build status

A simple blog app built on ASP.NET Core.

Get Started

Prerequisites:

  • .NET Core 2.2 SDK
  • Visual Studio 2017 version 15.9 or later with the ASP.NET and web development workload (Optional)

Configurations:

You can set configurations in file appsettings.json and appsettings.Development.json.

  // appsettings.json
  "Config": {
    "Database": {
      // Available values: Sqlite, SqlServer
      "Provider": "Sqlite",
      "ConnectionStrings": "DataSource=app.db"
    },
    "SiteName": "Simple Blog"
  },
  // appsettings.Development.json
  "Development": {
    // Enable or disable data seeding. Admin user's username/password: "admin@example.com"/"Passw0rd."
    "IsDataSeedingEnabled": true
  }