view manage.py @ 10:6ac0b74a57f7

UI improvements for page editing. Resizable text editor, collapsable preview. Replaced 960gs with Bootstrap. Various UI fixes.
author Ludovic Chabant <ludovic@chabant.com>
date Sat, 22 Dec 2012 22:33:11 -0800
parents c946f4facfa2
children 30ae685b86df
line wrap: on
line source

import os.path
from flask.ext.script import Manager, Command
from wikked import app

manager = Manager(app)

@manager.command
def stats():
    """Prints some stats about the wiki."""
    pass


if __name__ == "__main__":
    manager.run()