_/_/_/
_/ _/ _/ _/ _/ _/
_/_/_/ _/ _/ _/_/
_/ _/ _/ _/ _/ _/
_/ _/ _/_/_/ _/ _/
A simple, micro and lightweight static site generator, built for mini needs personal blog.
latest version: v0.3.0
-
site: love.hit9.org
-
files: github.com/hit9/v.git
- Source in markdown
- No tags, No categories
- No comment system(disqus, duoshuo..)
- Minimal configuration
- Running in the background as a daemon
rux
is designed only for writing.
-
Install rux using virtualenv:
mkdir myblog && cd myblog virtualenv venv . venv/bin/activate pip install git+git://github.com/hit9/rux.git
-
System-Wide Installation
sudo pip install git+git://github.com/hit9/rux.git
- deploy a new blog
cd myblog
rux deploy
- edit the configuration, the config file is simple.
vim config.toml
- start rux's server(include a web server and a file watcher)
rux start
- new a post
rux post
- write this post in markdown
vim src/post/2013-03-27-10-10.md
rux
will automatically build blog each time you save. Preview site at http://0.0.0.0:8888
.
- stop the server
rux stop
A post is make up of title and body, split by ===
:
Title
=====
Markdown body..
- Installation troubles on Ubuntu: cann't find Python.h, solution:
sudo apt-get install python-dev
BSD