From 8e12cb9bb66adc7adaf6d276133d6f235d294d23 Mon Sep 17 00:00:00 2001 From: alex Date: Wed, 15 Jul 2026 20:24:31 +0200 Subject: init --- order-service/app/core/config.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 order-service/app/core/config.py (limited to 'order-service/app/core/config.py') diff --git a/order-service/app/core/config.py b/order-service/app/core/config.py new file mode 100644 index 0000000..013b356 --- /dev/null +++ b/order-service/app/core/config.py @@ -0,0 +1,14 @@ +from pydantic_settings import BaseSettings + + +class Settings(BaseSettings): + PROJECT_NAME: str = "Order Service API" + + DATABASE_URL: str + + class Config: + env_file = ".env" + env_file_encoding = "utf-8" + + +settings = Settings() -- cgit v1.2.3