--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test_cmd.py Sat Jul 18 00:03:35 2009 +0300
@@ -0,0 +1,25 @@
+#!/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()