Tested with Pelican 4.8.0
$ virtualenv pelican-blog-venv
$ source pelican-blog-venv/bin/activate
$ pip install pelican markdown
This is accomplished in github and you must be logged in. You should have the repository under your account after the fork.
$ git clone https://github.com/<YOUR_USERNAME>/uplb-eliens.github.io.git
$ cd uplb-eliens.github.io
$ git remote -v
$ git remote add upstream https://github.com/uplb-eliens/uplb-eliens.github.io.git
$ git remote -v
$ git fetch upstream
$ git checkout master
$ git merge upstream/master
$ mkdir -p content/articles/<YOUR_NICKNAME>
$ mkdir -p content/articles/<YOUR_NICKNAME>/images
Follow the naming convention above.
If your article has images, place them in the images
directory.
$ make clean
$ make html
$ make devserver
Check (http://localhost:8000) on browser.
Ctrl+C on the terminal to stop the server when done.
You might want to sync with upstream first as described above before running the following commands.
$ git commit -m"edits" -a
$ git push
$ deactivate