Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(backend): project builder init draft #41

Merged
merged 7 commits into from
Nov 12, 2024
Merged
40 changes: 40 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,43 @@ Still on progress
CodeFox
LOGO
![](./assets/WechatIMG1000.svg)

```mermaid
graph TD
subgraph Project_Generate_Layer[Project Generate Layer]
UP[User Project Info] --> PRD[Product Requirements Document]
PRD --> FRD[Feature Requirements Document]
PRD --> UXSD[UX Sitemap Document]
UXSD --> UXDD[UX Datamap Document]
UXDD --> DRD[Database Requirements Document]
DRD --> DBS[DB/schemas]
DRD --> DBP[DB/postgres]
DRD --> BRD[Backend Requirements Document]

%% Frontend related generations
UXSD --> USS[ux/sitemap-structure]
USS --> ROUTE[frontend/routing]
UXDD --> UDS[ux/datamap-structure]
UXDD --> UDV[ux/datamap-views]

%% Webview generations
USS --> WV1[webview/page1]
USS --> WV2[webview/page2]
USS --> WV3[webview/page3]
USS --> ROOT[webview/root]
UDV --> ROOT

%% Optional: Show multiple pages with a note
note[...more webviews...]
USS --> note
end

%% Styling
classDef default fill:#f9f9f9,stroke:#333,stroke-width:2px
classDef boxStyle fill:#fff,stroke:#666,stroke-width:1px
classDef noteStyle fill:#fff4e6,stroke:#d9480f,stroke-width:1px
class UP,PRD,FRD,UXSD,UXDD,DRD,DBS,DBP,BRD,USS,UDS,UDV,ROUTE,WV1,WV2,WV3,ROOT boxStyle
class note noteStyle
classDef layerStyle fill:#f4f4f4,stroke:#666,stroke-width:1px,stroke-dasharray: 5 5
class Project_Generate_Layer layerStyle
```
306 changes: 0 additions & 306 deletions backend/src/auth/auth.spec.ts

This file was deleted.

Loading
Loading