Save local changes (GSC/Bing integrations) before merging PR #354
This commit is contained in:
@@ -74,6 +74,7 @@ from routers.linkedin import router as linkedin_router
|
||||
from api.linkedin_image_generation import router as linkedin_image_router
|
||||
from api.brainstorm import router as brainstorm_router
|
||||
from api.images import router as images_router
|
||||
from api.assets_serving import router as assets_serving_router
|
||||
from routers.image_studio import router as image_studio_router
|
||||
from routers.product_marketing import router as product_marketing_router
|
||||
from routers.campaign_creator import router as campaign_creator_router
|
||||
@@ -132,6 +133,7 @@ from api.seo_dashboard import (
|
||||
get_semantic_health # Phase 2B: Semantic health monitoring
|
||||
)
|
||||
|
||||
|
||||
# Initialize FastAPI app
|
||||
app = FastAPI(
|
||||
title="ALwrity Backend API",
|
||||
@@ -244,6 +246,9 @@ async def onboarding_status():
|
||||
router_manager.include_core_routers()
|
||||
router_manager.include_optional_routers()
|
||||
|
||||
# Include assets serving router (must be mounted to serve generated images)
|
||||
app.include_router(assets_serving_router)
|
||||
|
||||
# SEO Dashboard endpoints
|
||||
@app.get("/api/seo-dashboard/data")
|
||||
async def seo_dashboard_data():
|
||||
|
||||
Reference in New Issue
Block a user