Download the latest asset from Github

This commit is contained in:
Stanislas Jouffroy 2025-03-03 22:58:12 +01:00
parent c32449e465
commit b56d8e72ca
11 changed files with 283 additions and 2 deletions

8
majordome/settings.py Normal file
View file

@ -0,0 +1,8 @@
from pydantic_settings import BaseSettings, SettingsConfigDict
from pydantic import Field
class GithubSettings(BaseSettings):
model_config = SettingsConfigDict(env_prefix="github_", env_file=".env")
token: str = Field(default="")