This commit is contained in:
JiriUhlir
2026-05-27 10:31:52 +02:00
parent 896657dd6f
commit 48d54a4bac
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
id: microsoft-365-service
name: Microsoft 365 Service
language: python
version: 1.0.0
version: 1.0.1
base_path: /apps/microsoft-365-service
port: 8000
status: development
+1 -1
View File
@@ -5,7 +5,7 @@ from dataclasses import dataclass
@dataclass(frozen=True)
class Settings:
app_name: str = os.getenv("APP_NAME", "Microsoft 365 Service")
app_version: str = os.getenv("APP_VERSION", "1.0.0")
app_version: str = os.getenv("APP_VERSION", "1.0.1")
root_path: str = os.getenv("ROOT_PATH", "")
tenant_id: str = os.getenv("MS365_TENANT_ID", "")
client_id: str = os.getenv("MS365_CLIENT_ID", "")