Skip to content

Commit

Permalink
small up
Browse files Browse the repository at this point in the history
  • Loading branch information
flavien-hugs committed Sep 15, 2024
1 parent 89ce89a commit b21bb22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/config/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class AuthBaseConfig(BaseSettings):
# APP CONFIG
APP_NAME: Optional[str] = Field(default="Auth", alias="APP_NAME")
APP_TITLE: Optional[str] = Field(default="Authentication and user management system", alias="APP_TITLE")
APP_TITLE: Optional[str] = Field(default="User management and Auth", alias="APP_TITLE")
APP_HOSTNAME: Optional[str] = Field(default="0.0.0.0", alias="APP_HOSTNAME")
APP_RELOAD: Optional[bool] = Field(default=True, alias="APP_RELOAD")
FULLNAME_MIN_LENGTH: Optional[PositiveInt] = Field(default=4, alias="FULLNAME_MIN_LENGTH")
Expand Down
2 changes: 1 addition & 1 deletion tests/.test.env
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# APP CONFIG
APP_NAME="auth-test"
APP_TITLE="Authentication and user management system"
APP_TITLE="Authentication and User management system"
APP_HOSTNAME="0.0.0.0"
APP_RELOAD=1
APP_ACCESS_LOG=1
Expand Down

0 comments on commit b21bb22

Please sign in to comment.