2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-04 22:55:25 +00:00

docs(easy-install): update README

This commit is contained in:
Revant Nandgaonkar 2024-12-25 12:22:09 +05:30
parent 1e0c01750b
commit 0ee2eea820
2 changed files with 12 additions and 1 deletions

View File

@ -97,6 +97,8 @@ options:
-h, --help show this help message and exit
-n PROJECT, --project PROJECT
Project Name
-g, --cronstring CRONSTRING
Backup Cronstring, default: "@every 6h"
-i IMAGE, --image IMAGE
Full Image Name
-q, --no-ssl No https
@ -138,6 +140,8 @@ options:
-h, --help show this help message and exit
-n PROJECT, --project PROJECT
Project Name
-g, --cronstring CRONSTRING
Backup Cronstring, default: "@every 6h"
-i IMAGE, --image IMAGE
Full Image Name
-q, --no-ssl No https
@ -163,6 +167,8 @@ options:
-h, --help show this help message and exit
-n PROJECT, --project PROJECT
Project Name
-g, --cronstring CRONSTRING
Backup Cronstring, default: "@every 6h"
-i IMAGE, --image IMAGE
Full Image Name
-q, --no-ssl No https

View File

@ -527,7 +527,12 @@ def add_setup_options(parser: argparse.ArgumentParser):
def add_common_parser(parser: argparse.ArgumentParser):
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(
"-m", "--http-port", help="Http port in case of no-ssl", default="8080"