8 Phases refactor

This commit is contained in:
IGNY8 VPS (Salman)
2025-12-03 16:08:02 +00:00
parent 30bbcb08a1
commit 39df00e5ae
55 changed files with 2120 additions and 5527 deletions

View File

@@ -42,7 +42,6 @@ IGNY8 is a full-stack AI-powered SEO content management platform consisting of t
| **WordPress Publishing** | Bidirectional sync via REST API | ✅ Live |
| **Internal Linking** | Linker module for SEO optimization | ✅ Live |
| **Content Optimization** | Optimizer module for scoring | ✅ Live |
| **Site Blueprints** | Site Builder for site structure | ✅ Live |
| **Automation** | Scheduled tasks and rules | ✅ Live |
| **Credit System** | Usage-based billing | ✅ Live |
@@ -83,7 +82,6 @@ IGNY8 is a full-stack AI-powered SEO content management platform consisting of t
│ • Linker │ • Linking Services │
│ • Optimizer │ • Optimization Services │
│ • Publisher │ • Publishing Services │
│ • Site Builder │ • Site Building Services │
│ • Automation │ • Automation Services │
│ • Integration │ • Integration Services │
│ • System │ • System Settings │
@@ -176,11 +174,6 @@ backend/
│ │ │ ├── views.py # PublisherViewSet, PublishingRecordViewSet
│ │ │ └── urls.py # /api/v1/publisher/ routes
│ │ │
│ │ ├── site_builder/ # Site blueprints & pages
│ │ │ ├── views.py # SiteBlueprintViewSet, PageBlueprintViewSet
│ │ │ ├── serializers.py # Serializers
│ │ │ └── urls.py # /api/v1/site-builder/ routes
│ │ │
│ │ ├── automation/ # Automation rules & tasks
│ │ │ ├── views.py # AutomationRuleViewSet, ScheduledTaskViewSet
│ │ │ └── urls.py # /api/v1/automation/ routes
@@ -208,7 +201,6 @@ backend/
│ │ ├── linking/ # Linker services
│ │ ├── optimization/ # Optimizer services
│ │ ├── publishing/ # Publisher models
│ │ ├── site_building/ # Site builder models
│ │ ├── automation/ # Automation models
│ │ ├── integration/ # Integration models
│ │ │ ├── models.py # SiteIntegration
@@ -294,7 +286,7 @@ class SiteSectorModelViewSet(ModelViewSet):
# ... filtering logic
```
**Used by:** Planner, Writer, Site Builder, Publisher, Automation, Integration modules
**Used by:** Planner, Writer, Publisher, Automation, Integration modules
### Middleware Stack