view manage.py @ 11:aa6951805e1a

New features and bug fixes: - Extracted navigation and footer parts into their own model/view. - Added search. - Better typography styles. - Fixed some bugs in the Handlebars helpers.
author Ludovic Chabant <ludovic@chabant.com>
date Sat, 29 Dec 2012 18:21:44 -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()