author | Alexander Solovyov <piranha@piranha.org.ua> |
Thu, 03 Sep 2009 23:21:31 +0300 | |
changeset 85 | baa6caa786af |
parent 75 | 2782b2406ba8 |
child 87 | ec9736668bca |
permissions | -rwxr-xr-x |
#!/usr/bin/env python import opster config_opts=[('c', 'config', 'webshops.ini', 'config file to use')] @opster.command(config_opts) def initdb(config): """Initialize database""" pass @opster.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 opster.dispatch()