Micro & Fast static blog generator (markdown => html).
latest version: v0.6.6-Beta
-
Static: Markdown => HTML
-
Not tags, No categories, No feed generation, No ...
-
Minimal & Simple configuration
-
Ability to run in the background as a daemon
-
Ability to save posts in PDF for offline reading
-
Ability to build automatically once source updated
$ mkdir MyBlog
$ cd MyBlog
$ virtualenv venv
New python executable in venv/bin/python
Installing setuptools............done.
Installing pip...............done.
$ . venv/bin/activate
$ pip install rux
Install troubles: https://github.com/hit9/rux#common-issues
-
Create a new directory and install rux:
mkdir myblog && cd myblog virtualenv venv . venv/bin/activate pip install rux
Deploy blog inside it:
mkdir blog && cd blog rux deploy
-
Edit generated configuration:
vi config.toml
-
Start rux daemon:
rux start
-
New a post:
rux post
-
Preview site in browser, default url:
0.0.0.0:8888
.
Sample post:
Hello World
http://titlepic.jpg
---
**Hello World**
A post is separated into head and body by ---
.
Head includes title (required) and title picture (optional), body is in markdown.
To deploy a new blog in new-created directory:
rux deploy
To build site from source to htmls:
rux build
To create a new post:
rux post
To remove all htmls rux built:
rux clean
To start a HTTP server and watch source changes:
rux serve
When you save your writings, rux can detect the changes and start rebuilding.
To run rux's server and rebuilder in the background(so we can write blog with at most one shell session.):
rux start
To generate all posts to pdf:
rux pdf
You really should manage your theme in a standalone git repository, and use it as a submodule of your blog's submodule if your blog is under git versioning too.
For instance, add theme default
a submodule of your blog's repo:
$ git submodule add git://github.com/hit9/rux-theme-default.git default
If you want to modify a theme created by someone else, just fork his(or her) repo, and then modify it.
But it's 100% ok to use themes not in the submodule way.
Theme list:
-
default: https://github.com/hit9/rux-theme-default by @hit9
-
clr: https://github.com/hit9/rux-theme-clr by @hit9
- Installation troubles on Ubuntu:
cann't find Python.h
, solution:
sudo apt-get install python-dev
- How to generate PDF from my blog? You need to install wkhtmltopdf first:
BSD. Rux
can be used, modified for any purpose.