add homekeeper stack

This commit is contained in:
2026-07-06 19:25:38 +02:00
commit 58983e6855
90 changed files with 6816 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
from sqlmodel import Field, SQLModel
class User(SQLModel, table=True):
__tablename__ = "users"
__table_args__ = {"schema": "auth"}
id: int | None = Field(default=None, primary_key=True)
username: str = Field(unique=True, index=True)
hashed_password: str