chore: filled in project structure

Added some example basic files containing a functioning /message
endpoint which logs the received message to INFO.

ref: N25B-144
This commit is contained in:
2025-10-08 15:02:11 +02:00
parent 9e96d57b6c
commit 1229df70b0
9 changed files with 100 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
from pydantic import HttpUrl
from pydantic_settings import BaseSettings, SettingsConfigDict
class Settings(BaseSettings):
app_title: str = "PepperPlus"
ui_url: HttpUrl = "http://locahost:5173"
model_config = SettingsConfigDict(env_file=".env")
settings = Settings()