-
-
Notifications
You must be signed in to change notification settings - Fork 196
1. Deployment
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.
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.
Coming soon.
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.
If you have additional questions or concerns please submit an issue.