Skip to content

Commit 9874e8f

Browse files
committed
Add WEBSITE_AUTH_ENCRYPTION_KEY to settings
1 parent 02f3232 commit 9874e8f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

code/function/fastapp/core/config.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ class Settings(BaseSettings):
1818
)
1919
WEBSITE_NAME: str = Field(default="test", alias="WEBSITE_SITE_NAME")
2020
WEBSITE_INSTANCE_ID: str = Field(default="0", alias="WEBSITE_INSTANCE_ID")
21+
WEBSITE_AUTH_ENCRYPTION_KEY: str = Field(
22+
default="0", alias="WEBSITE_AUTH_ENCRYPTION_KEY"
23+
)
2124
MY_SECRET_CONFIG: str = Field(default="", alias="MY_SECRET_CONFIG")
2225

2326

0 commit comments

Comments
 (0)