Skip to content

Commit 01f9532

Browse files
committed
Added description for the 'crypto_key' field in the GlobalConfig
1 parent 0b12cb7 commit 01f9532

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/murfey/util/config.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,13 @@ class GlobalConfig(BaseModel):
508508
"instead of creating a new one every time."
509509
),
510510
)
511-
crypto_key: str
511+
crypto_key: str = Field(
512+
default="",
513+
description=(
514+
"The encryption key used for the SQL database. This can be generated by "
515+
"Murfey using the 'murfey.generate_key' command."
516+
),
517+
)
512518

513519
# RabbitMQ settings
514520
feedback_queue: str = "murfey_feedback"

0 commit comments

Comments
 (0)