Skip to content

Commit

Permalink
docs(easy-install): update README
Browse files Browse the repository at this point in the history
  • Loading branch information
revant committed Dec 25, 2024
1 parent 1e0c017 commit 0ee2eea
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down
7 changes: 6 additions & 1 deletion easy-install.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 0ee2eea

Please sign in to comment.