feat: Add GitHub as an available OAuth provider and remove database initialization logs

This commit is contained in:
JSC
2025-09-21 18:58:20 +02:00
parent c13e18c290
commit 35b857fd0d
2 changed files with 1 additions and 4 deletions

View File

@@ -331,7 +331,7 @@ async def oauth_callback(
async def get_oauth_providers() -> dict[str, list[str]]:
"""Get list of available OAuth providers."""
return {
"providers": ["google"],
"providers": ["google", "github"],
}

View File

@@ -29,9 +29,6 @@ async def lifespan(_app: FastAPI) -> AsyncGenerator[None]:
logger = get_logger(__name__)
logger.info("Starting application")
# await init_db()
# logger.info("Database initialized")
# Start the extraction processor
await extraction_processor.start()
logger.info("Extraction processor started")