The Miniakio 2 instructions on my blog(Chinese): http://serholiu.com/about-miniakio
This is my blog source code, powered by Tornado web framework.It's not yet a static blog generator, but it's really simple and lightweight,it has a blog engine must features, such as Category, Tag, Post, Page, Feed,now it's use sqlite3 database.
You need use Markdown markup language written post with your favorite editor, sign in blog hostname:port/auth/signin (username and password in tools.py) and go to
/post/new post it.Picky type post, just go to /post/picky upload your markdown file.
Post (see example/post_example.md):
# Title
- slug: title
- published: 2012-06-26 19:00
- tags: Test, Tornado, Python
- category: Work
------------------------------
This Content....
```python
import math
print math.sqrt(9)
```
Picky compare with Post,no tags, category and slug(see picky folder).
Requirements:
- Get this:
git clone https://github.com/SerhoLiu/serholiu.com.git - If you use Python3, you should
git checkout python3 - Install required package:
pip install -r requirements.txt - Create Sqlite3 database: edit
tools.pyandpython tools.py -o createdb - Disqus support: change
miniakio/templates/post.htmldisqus_shortnameinto your username. - Production suggest: See My blog(Chinese)
MIT LICENSE, see MIT-LICENSE.txt