Skip to content

1. Deployment

Mark Downie edited this page Sep 13, 2020 · 37 revisions

XCOPY

As DasBlog Core is a .NET Core project a simple xcopy is sufficient to get you up and running manually. You can find the latest DasBlog Core deployment zip files in the release.

Visual Studio

If you are comfortable with IDEs then the most efficient way to deploy DasBlog Core with Visual Studio by following the Overview of deployment in Visual Studio.

Configuration settings are as follows:

  • Configuration: Release
  • netcoreapp3.1
  • Self -Contained
  • win-x64

So far deployment to Azure App Services (Windows, Linux) and to a .NET based hosting service provider have worked fine, via Web Deploy and FTP respectively.

Azure Deployment

Coming soon.

Configuration files + Environments

There are a collection four configuration files necessary for DasBlog Core to work (listed below). DasBlog Core uses "ASPNETCORE_ENVIRONMENT" environment variable value to find the correct config file at runtime:

  • site.[Environment].config
  • meta.[Environment].config
  • siteSecurity.[Environment].config
  • IISUrlRewrite.[Environment].config

For example, if you have deployed to a "Production" environment the site configuration file DasBlog will look for will be named site.Production.config.

Additional questions?

If you have additional questions or concerns please submit an issue.

Clone this wiki locally