diff options
author | Zhiming Wang <zmwangx@gmail.com> | 2015-05-05 22:08:54 -0700 |
---|---|---|
committer | Zhiming Wang <zmwangx@gmail.com> | 2015-05-05 22:10:19 -0700 |
commit | 11f732c9f2644302136ee90176ad7816bd596895 (patch) | |
tree | 6e1a31127ef13e19889c693a24f9d71f8fafe1c5 /README.md | |
parent | a7a0b2073f30b1d0214c3152998d95e40a39b438 (diff) | |
download | my_new_personal_website-11f732c9f2644302136ee90176ad7816bd596895.tar.xz my_new_personal_website-11f732c9f2644302136ee90176ad7816bd596895.zip |
20150505 Graceful handling of SIGINT when using Python's multiprocessing.Process
Also implemented the "touch" action in pyblog, as well as wrote a
README.md for the source branch. And some other minor patching.
Diffstat (limited to '')
-rw-r--r-- | README.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 00000000..18b55ef7 --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +This blog can be built with the `pyblog` script. The `pyblog` script currently provides the following actions: + +* `new_post` (aliases: `n`, `new`); +* `touch` (aliases: `t`, `tou`); +* `generate` (aliases: `g`, `gen`); +* `regenerate` (aliases: `r`, `regen`); +* `preview` (aliases: `p`, `pre`). +* `deploy` (aliases: `d`, `dep`); +* `gen_deploy` (aliases: `gd`, `gendep`); + +Run `pyblog --help` for more information, and `pyblog <action> --help` for what the action does and how to perform the action. + +Note that `pyblog` is incompatible with Python 2.x, and in fact only tested on Python 3.4. + +The theme of this blog is largely based on that of [mort.ninja](http://mort.ninja) by [Mort Yao](https://github.com/soimort). See [this post](https://zmwangx.github.io/blog/2015-05-05-new-blog-new-start.html) for more details. |