Add cache file param
This commit is contained in:
parent
ad8a4ed906
commit
7e415314d8
1 changed files with 6 additions and 0 deletions
|
@ -129,6 +129,12 @@ class __project_codename_camel__:
|
||||||
default=f"{LOG_FOLDER}/__project_code_name__.log",
|
default=f"{LOG_FOLDER}/__project_code_name__.log",
|
||||||
help="File to store all debug messages."
|
help="File to store all debug messages."
|
||||||
)
|
)
|
||||||
|
@click.option(
|
||||||
|
'--cache-file',
|
||||||
|
'-f',
|
||||||
|
default=f"{CACHE_FOLDER}/__project_code_name__.json",
|
||||||
|
help='Cache file to store data from each run',
|
||||||
|
)
|
||||||
@click.option(
|
@click.option(
|
||||||
'--max-cache-age',
|
'--max-cache-age',
|
||||||
'-a',
|
'-a',
|
||||||
|
|
Loading…
Reference in a new issue