Migrating from WordPress to Pelican on PaaS – Part 2
Part 2 of a this 3 part series examines how I created my Pelican blog and migrated my Wordpress content with me.
Part 2: The Wordpress to Pelican Migration
The Plan
If you haven't read Part 1 already, it will give you some background as to what I'm doing and why I'm doing it.
Starting the Pelican Project
Assuming you already have a working Python, starting a new blog is as easy as installing a few dependencies and using the pelican-quickstart
pip install pelican Markdown
mkdir blog
cd blog
pelican-quickstart
Welcome to pelican-quickstart v3.3.0.
This script will help you create a new Pelican-based website.
Please answer the following questions so this script can generate the files
needed by Pelican.
> Where do you want to create your new web site? [.]
> What will be the title of this web site? Dave's Blog
> Who will be the author of this web site? Dave Tucker
> What will be the default language of this web site? [en]
> Do you want to specify a URL prefix? e.g., http://example.com (Y/n) Y
> What is your URL prefix? (see Continue reading