From cc39662bc142a7acd96ad428f5c7a3d2dd7c306e Mon Sep 17 00:00:00 2001 From: harshadyeola Date: Tue, 2 Dec 2014 18:56:16 +0530 Subject: [PATCH] ee site flags --- ee/cli/controllers/site.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/ee/cli/controllers/site.py b/ee/cli/controllers/site.py index e1ca53b5..4d527c87 100644 --- a/ee/cli/controllers/site.py +++ b/ee/cli/controllers/site.py @@ -10,9 +10,13 @@ class EESiteController(CementBaseController): stacked_type = 'nested' description = 'site command manages website configuration with the help of the following subcommands' arguments = [ - (['-f', '--foo'], - dict(help='the notorious foo option', dest='foo', action='store', - metavar='TEXT') ), + (['site_name'], dict(help='the notorious foo option') ), + (['--html'], dict(help="html site", action='store_true')), + (['--php'], dict(help="php site", action='store_true')), + (['--mysql'], dict(help="mysql site", action='store_true')), + (['--wp'], dict(help="wordpress site", action='store_true')), + (['--wpsubdir'], dict(help="wpsubdir site", action='store_true')), + (['--wpsubdomain'], dict(help="wpsubdomain site", action='store_true')), ] @expose(hide=True)