mirror of
https://github.com/frappe/bench.git
synced 2025-01-06 23:44:03 +00:00
docs(easy-install): update README
This commit is contained in:
parent
1e0c01750b
commit
0ee2eea820
@ -97,6 +97,8 @@ options:
|
|||||||
-h, --help show this help message and exit
|
-h, --help show this help message and exit
|
||||||
-n PROJECT, --project PROJECT
|
-n PROJECT, --project PROJECT
|
||||||
Project Name
|
Project Name
|
||||||
|
-g, --cronstring CRONSTRING
|
||||||
|
Backup Cronstring, default: "@every 6h"
|
||||||
-i IMAGE, --image IMAGE
|
-i IMAGE, --image IMAGE
|
||||||
Full Image Name
|
Full Image Name
|
||||||
-q, --no-ssl No https
|
-q, --no-ssl No https
|
||||||
@ -138,6 +140,8 @@ options:
|
|||||||
-h, --help show this help message and exit
|
-h, --help show this help message and exit
|
||||||
-n PROJECT, --project PROJECT
|
-n PROJECT, --project PROJECT
|
||||||
Project Name
|
Project Name
|
||||||
|
-g, --cronstring CRONSTRING
|
||||||
|
Backup Cronstring, default: "@every 6h"
|
||||||
-i IMAGE, --image IMAGE
|
-i IMAGE, --image IMAGE
|
||||||
Full Image Name
|
Full Image Name
|
||||||
-q, --no-ssl No https
|
-q, --no-ssl No https
|
||||||
@ -163,6 +167,8 @@ options:
|
|||||||
-h, --help show this help message and exit
|
-h, --help show this help message and exit
|
||||||
-n PROJECT, --project PROJECT
|
-n PROJECT, --project PROJECT
|
||||||
Project Name
|
Project Name
|
||||||
|
-g, --cronstring CRONSTRING
|
||||||
|
Backup Cronstring, default: "@every 6h"
|
||||||
-i IMAGE, --image IMAGE
|
-i IMAGE, --image IMAGE
|
||||||
Full Image Name
|
Full Image Name
|
||||||
-q, --no-ssl No https
|
-q, --no-ssl No https
|
||||||
|
@ -527,7 +527,12 @@ def add_setup_options(parser: argparse.ArgumentParser):
|
|||||||
|
|
||||||
def add_common_parser(parser: argparse.ArgumentParser):
|
def add_common_parser(parser: argparse.ArgumentParser):
|
||||||
parser = add_project_option(parser)
|
parser = add_project_option(parser)
|
||||||
parser.add_argument("-g", "--cronstring", help="Cronstring", default="@every 6h")
|
parser.add_argument(
|
||||||
|
"-g",
|
||||||
|
"--cronstring",
|
||||||
|
help='Backup Cronstring, default: "@every 6h"',
|
||||||
|
default="@every 6h",
|
||||||
|
)
|
||||||
parser.add_argument("-i", "--image", help="Full Image Name")
|
parser.add_argument("-i", "--image", help="Full Image Name")
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"-m", "--http-port", help="Http port in case of no-ssl", default="8080"
|
"-m", "--http-port", help="Http port in case of no-ssl", default="8080"
|
||||||
|
Loading…
Reference in New Issue
Block a user