cyborg-pelican

My first Pelican repository.

Installing

pip install pelican markdown

Running

My workflow is like this:

I change directory to my copy of this repository.

From there, I check out a copy of my gh-pages branch (of this repository) into the output directory.

I remove content in the output directory.

I run pelican content to generate a static site from the content in the content directory.

This generates static content in output.

I test the site by doing:

$ cd output
$ python -m SimpleHTTPServer

If I'm happy with the site, then from the output directory, I run:

$ git add * && git commit -a -m 'adding everything' && git push origin gh-pages

Finally, I update the source files, by running the same series of commands from the parent (source) directory:

$ cd ..
$ git add * && git commit -m 'update' && git push origin master
Description
My first Python Pelican repository.
Readme 1.5 MiB
Languages
HTML 79.2%
SCSS 15.6%
Jupyter Notebook 3.5%
CSS 1%
Python 0.6%