From cba893f392395f22c9ec78cb924a31e7633f36f1 Mon Sep 17 00:00:00 2001 From: underchemist Date: Fri, 5 Sep 2014 01:39:31 -0700 Subject: [PATCH] added pelican properly? --- plugins/pelican.plugin.zsh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 plugins/pelican.plugin.zsh diff --git a/plugins/pelican.plugin.zsh b/plugins/pelican.plugin.zsh new file mode 100644 index 000000000..3cf58592f --- /dev/null +++ b/plugins/pelican.plugin.zsh @@ -0,0 +1,17 @@ +# ------------------------------------------------------- +# Pelican plugin for oh-my-zsh +# author: Yann-Sebastien Tremblay-Johnston (underchemist) +# email: yanns.tremblay@gmail.com +# ------------------------------------------------------- +# wrapper script for pelican build and deploy commands +# set to use the make file in the pelican directory +# ------------------------------------------------------- + +alias pb='make html' # (re)generate the web site +alias pc='make clean' # remove the generated files +alias pbr='make regenerate' # regnerate files upon modification +alias pp='make publish' # generate using publishconf.py +alias pl='make serve' # serve site at http:localhost:8000 +alias pd='make devserver' # start/restart develop_server.py +alias psp='make stopserver' # stop local server +alias pgit='make github' # upload to the web site via gh-pages