Initial commit for resumeformatter project

This commit is contained in:
Laxmi Khilnani
2025-10-14 19:51:35 +05:30
commit ee030b70bc
43 changed files with 1668 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
from typing import Optional, List
import os
from dotenv import load_dotenv
# Load environment variables
load_dotenv()
# Simple settings class without using BaseSettings
class Settings:
"""
Application settings
"""
APP_NAME: str = os.getenv("APP_NAME", "ResumeFormatter")
API_V1_STR: str = f"/{APP_NAME}/api"
PROJECT_NAME: str = "Profile Linker API"
# CORS settings
BACKEND_CORS_ORIGINS: List[str] = ["*"]
# Database settings - using in-memory database by default
# In a production environment, you would use a real database connection string
DATABASE_URL: Optional[str] = None
settings = Settings()