author | Alexander Solovyov <piranha@piranha.org.ua> |
Fri, 11 Sep 2009 22:50:51 +0300 | |
changeset 90 | 04f3e6519ace |
parent 87 | ec9736668bca |
child 91 | a0f2747f4a3d |
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 if __name__ == '__main__': opster.dispatch()