author | Alexander Solovyov <piranha@piranha.org.ua> |
Fri, 07 Aug 2009 19:22:22 +0300 | |
changeset 73 | d283be877fc5 |
parent 72 | b5bf4c1f3a68 |
child 75 | 2782b2406ba8 |
permissions | -rwxr-xr-x |
#!/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(**opts): """Run development server""" print opts finaloption.dispatch()