Fix trufflehog exclude patterns
This commit is contained in:
parent
0ad8706625
commit
01ff7c2f79
|
|
@ -5,9 +5,12 @@ from vbv_lernwelt.learnpath.create_default_learning_path import create_default_l
|
|||
|
||||
|
||||
@click.command()
|
||||
@click.option("--customer_language", default="de")
|
||||
def command(customer_language):
|
||||
@click.option('--reset-learning-path', default=False)
|
||||
def command(reset_learning_path):
|
||||
print("cypress reset data")
|
||||
|
||||
if reset_learning_path:
|
||||
delete_default_learning_path()
|
||||
create_default_learning_path(skip_locales=True)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,8 @@
|
|||
server/requirements/
|
||||
env_secrets/
|
||||
env/docker_local.env
|
||||
server/vbv_lernwelt/media/
|
||||
server/vbv_lernwelt/simpletodo/
|
||||
supabase.md
|
||||
scripts/supabase/init.sql
|
||||
.envs/
|
||||
|
|
|
|||
Loading…
Reference in New Issue