So I got tired of wordpress, the overhead in complexity for a simple blog became too much to maintain, so I decided to start using jekyll and host my personal site on github-pages, and eventually S3, here’s how that went.
Sections:
- About the switch
- Migrating posts and custom post types
- Setting up github-pages and my custom domain with https
- Problems with github pages
- Why I decided to use S3 instead
- About the new setup
- Problems with Jekyll
About the switch
I had very little posts, in fact, only one blog post that was public, and many drafts that I never finished enough to publish. However, my “portfolio” was a custom post type with custom fields created with cmb2
I created a simple python crawler to generate the jekyll project file. […]
# -*- coding: utf-8 -*-
import scrapy
import io
class ProjectSpider(scrapy.Spider):
name = "mndflp"
allowed_domains = ['mndflp.me']
start_urls = [
'http://mndflp.me/',
]
def post_name(self, name):
return name.replace('-', ' ').capitalize()
def parse(self, response):
projects = response.css('.modal')
projects.extract()
for project in projects:
name = project.xpath('@id').extract()
print(name)
project_mobile_images = project.css('.inner .sliders .mobile-slider img').xpath('@src').extract()
project_tablet_images = project.css('.inner .sliders .tablet-slider img').xpath('@src').extract()
project_desktop_images = project.css('.inner .sliders .desktop-slider img').xpath('@src').extract()
project_description = '<br/>'.join(project.css('.inner .accordion .with-children.blue .child p::text').extract()).encode('utf-8')
project_tech_description = '<br/>'.join(project.css('.inner .accordion .with-children.red .child table').extract()).encode('utf-8')
project_notes = '<br/>'.join(project.css('.inner .accordion .with-children.aqua .child p::text').extract()).encode('utf-8')
with io.FileIO('projects/'+name[0]+".markdown", "w") as file:
file.write("---\n")
file.write("layout: project \n")
file.write('title: "'+ self.post_name(name[0]) +'"\n')
file.write("date: 2016-11-24\n")
file.write("author: Amando Abreu\n")
file.write("categories: project\n")
file.write("desktop_images:\n")
if(project_desktop_images):
for p in project_desktop_images:
file.write(" - image_path: " + p + "\n")
file.write(" title: Desktop image\n")
file.write("tablet_images:\n")
if (project_tablet_images):
for p in project_tablet_images:
file.write(" - image_path: " + p + "\n")
file.write(" title: Tablet image\n")
file.write("mobile_images:\n")
if (project_mobile_images):
for p in project_mobile_images:
file.write(" - image_path: " + p + "\n")
file.write(" title: Mobile image\n")
file.write('description: "' + project_description + '"\n')
file.write('tech_description: "' + project_tech_description + '"\n')
file.write('notes: "' + project_notes + '"\n')
file.write("---\n")
'''yield {
'name': project.xpath('@id').extract(),
'mobile_images': project_mobile_images,
'tablet_images': project_tablet_images,
'desktop_images': project_desktop_images,
'description': [ p.strip('\n') for p in project_description],
'tech_description': filter(None, [p.strip('\n').strip('\r\n').strip(' ') for p in project_tech_description]),
'notes': ''.join(project_notes),
}'''
Setting up github-pages and my custom domain with https
There are plenty of tutorials on setting up a site on github pages, like this one
And then you can use “flexible SSL” via cloudflare, which is completely free. However, keep in mind that it’s only encrypting the traffic bewteen the browser and cloudflare, not all the way to your server/S3.
Problems with github-pages
Github pages is a cool service to get things spinning up easily and fast, being able to deploy just by committing to a certain branch is certainly helpful, however, not all plugins are allowed, which reduces possibilities quite a lot.
So I decided to use Amazon S3, I signed up for a free tier, and setup S3 buckets for static site hosting
About the new setup
After replacing my wordpress setup and refactoring my “theme”, I now am using:
- Jekyll
- Gulp
- BEM CSS to help reduce specificity of selectors
- Disqus comments
Deployment
I’m using the S3 Website ruby gem, and I made a deploy script that I can call by running sh deploy.sh
, it’s as simple as this(requires S3 website gem to be installed and configured):
echo "Building blog"
jekyll build
echo "Deploying blog to s3"
s3_website push
Problems with Jekyll
Jekyll is a good static site generator, however, the documentation is bad, and it’s slow, compared to the other options, Hugo seems to take the win, I have been using it for other projects including for a static online store and its speed is simply impossible to ignore, after working on that project and then coming back to editing my blog with Jekyll, I felt much slower, even though my blog has less complexity and posts.
Our friends as Smashing magazine did a comparison, which shows Hugo might be a better option.