Upgrading the MuddlingThru.ca Blog to Orchard 1.9
Goals
Speed up the site and make it more readable.
- Use Orchard 1.9 instead of Orchard 1.8.
- Use Sql Azure instead of Sql Compact.
- Use a larger font, calmer background color, and simpler layout.
- Keep the existing simplicity and print layout.
Steps
First, export content from the existing site, using the Import/Export module. We did this in segments.
E.g. First, export the Blog.
- Blog
- Blog Archive
- Blog Post
On each export, we also included:
- Metadata
- Data
- Only Published Versions
- Site settings
- Roles
Then...
-
Create a
staging
deployment slot in MS Azure. -
Create a
staging
Git branch. -
Connect the
staging
deployment slot to thestaging
Git branch. - Download the Orchard Source (31 MB) into local Git staging branch.
-
Create a custom deploy.cmd script for
Orchard.proj
that targetsPrecompiled
. -
Add, commit, and push the
staging
Git branch.- Force add the media/Media source files (because our global .gitignore ignores Media directories.)
-
git add **/src/**/[Mm]edia/* -f
domain-staging.azurewebsites.net
, which will show the Orchard Setup page.
- Use the new SQL Server database.
- Choose the Blog recipe.
export.xml
file that we created in the first step.
- We did the imports with the Orchard command line interface.
-
It's also possible from the web user interface, though we needed to increase the
executionTimeout
in the web.config.
master
to
staging
.
Nice-to-Haves
- Replace the /lib directory with a Nuget packages.config file. Alternatively, can we just delete the /lib directory and have Nuget work anyway? I.e. read the *.sln file?
-
Speed up the deployment.
- Remove modules we aren't using, so the Azure Web App doesn't need to build them.
- Create multiple deploy.cmd scripts, for different scenarios (e.g. just deploy static files with no build.)