Pelican Static Site Continous Delivery to AWS S3 using github actions

Posted on July 11, 2021 in Performance • Tagged with WebSite, S3, Pelican

Pelican Static Site Continous Delivery to AWS S3 using github actions

Usecase : If you alredy have a Pelican Markdown based static generator as a platform for your static site and is hosted in AWS S3 and you dont wanted to manage any of the below things except creating the content …


Continue reading

Host a Static Site using Pelican , Amzon S3 for less than 1$

Posted on July 07, 2021 in WebSite • Tagged with Pelican, Reference, Github Actions

Host a Static Site using Pelican , Amzon S3 for less than a $1*

This article was basis for creating my personal site SilverDreamRacer.me static site. The only cost for me was - Amazon Route 53 Hosted Zones : 0.5$

*Ofcourse there is domain cost , I have got my domain for …


Continue reading

Install Pelican and configure static site in Amazon S3

Posted on July 05, 2021 in WebSite • Tagged with Pelican, Reference, Cheat Sheet

Create Virtual Environment for Pelican

python3 -m venv ~/virtualenvs/pelican
cd ~/virtualenvs/pelican/
source bin/activate

install Pelican

python3 -m pip install pelican

Validate Pelican installation

pelican --help

Install Pelican Markdown related plugins

python -m pip install "pelican[markdown]"

Pelican Validation

pelican --help

Check installed Pelican Themes

pelican-themes -l

#### Install …


Continue reading