test_cmd.py
author Alexander Solovyov <piranha@piranha.org.ua>
Sat, 18 Jul 2009 00:03:35 +0300
changeset 45 5ee1ba53050e
child 72 b5bf4c1f3a68
permissions -rwxr-xr-x
more tests

#!/usr/bin/env python

import finaloption

config_opts=[('c', 'config', 'webshops.ini', 'config file to use')]


@finaloption.command(config_opts)
def initdb(config):
    """Initialize database"""
    pass


@finaloption.command(options=config_opts + [
    ('h', 'host', 'localhost', 'The host for the application.'),
    ('p', 'port', 5000, 'The port for the server.'),
    ('', 'nolint', False, 'Do not use LintMiddleware')
])
def runserver(config, host, port, nolint):
    """Run development server"""

    pass


finaloption.dispatch()