Pelican S3 Domain Set up


Pelican --- 09/03/2019

https://docs.aws.amazon.com/AmazonS3/latest/dev/website-hosting-custom-domain-walkthrough.html


Continue reading

Pelican Reference Links


Pelican --- 08/26/2019

TimeLine:
https://codepen.io/mathiesjanssen/pen/ggeBKm

Pygments Style:
http://pygments.org/demo/6870868/?style=borland

Boostrap:
https://getbootstrap.com/docs/4.3/components/card/

Jupyter Integration: (pelican 3.6.3)
https://janakiev.com/blog/pelican-jupyter/

Deal with Extra:
https://stackoverflow.com/questions/31270373/how-to-add-a-favicon-to-a-pelican-blog


Continue reading

Pelican Theme Set up


Pelican --- 08/21/2019

  1. go into Pelican project
  2. git clone --recursive https://github.com/getpelican/pelican-themes ~/pelican-themes
  3. pelican content -s pelicanconf.py -t ~/pelican-themes/Flex
  4. pelican --listen

Continue reading

Pelican to S3


Pelican --- 08/11/2019

  1. set up pelican
  2. create a aws user from IAM, grant it admin
  3. pip install awscli
  4. aws configure
  5. login with user's access key
  6. create s3 bucket, set it public
  7. aws s3 cp output/ s3://shawnxuportfolio/ --recursive

Step by Step Details: http://anendeavour.com/hosting_a_static_blog_on_s3.html


Continue reading