Logo Lanfrica

CIRCA-RL-GHANA/thedep-workspace

Domain:

digital infrastructure

Record type:

softwareproject
Creator:
CIR
Host:
# PROMPT Genie β€” Monorepo Workspace > Full-stack mobile platform: **NestJS backend** + **Flutter frontend** ## πŸ“ Project Structure ``` thedep/ β”œβ”€β”€ orionstack-backend--main/ # NestJS API backend β”‚ β”œβ”€β”€ src/ β”‚ β”‚ β”œβ”€β”€ main.ts # Bootstrap + Swagger β”‚ β”‚ β”œβ”€β”€ app.module.ts # Root module β”‚ β”‚ β”œβ”€β”€ modules/ # Feature modules β”‚ β”‚ β”‚ β”œβ”€β”€ auth/ # βœ… JWT authentication β”‚ β”‚ β”‚ β”œβ”€β”€ users/ # Registration, OTP, biometric β”‚ β”‚ β”‚ β”œβ”€β”€ entities/ # Entity/branch management β”‚ β”‚ β”‚ β”œβ”€β”€ profiles/ # User profiles β”‚ β”‚ β”‚ β”œβ”€β”€ qpoints/ # Financial transactions β”‚ β”‚ β”‚ β”œβ”€β”€ products/ # Product catalog β”‚ β”‚ β”‚ β”œβ”€β”€ orders/ # Order fulfillment β”‚ β”‚ β”‚ β”œβ”€β”€ vehicles/ # Fleet management β”‚ β”‚ β”‚ β”œβ”€β”€ rides/ # Ride-hailing β”‚ β”‚ β”‚ β”œβ”€β”€ social/ # Chat, updates, HeyYa β”‚ β”‚ β”‚ β”œβ”€β”€ calendar/ # Calendar events β”‚ β”‚ β”‚ β”œβ”€β”€ planner/ # Financial planner β”‚ β”‚ β”‚ β”œβ”€β”€ statement/ # Life statement β”‚ β”‚ β”‚ β”œβ”€β”€ wishlist/ # Wishlist β”‚ β”‚ β”‚ └── ... # 22 modules total β”‚ β”‚ β”œβ”€β”€ common/ # Shared utilities β”‚ β”‚ β”‚ β”œβ”€β”€ constants/ # Routes, error codes β”‚ β”‚ β”‚ β”œβ”€β”€ dto/ # API response DTOs β”‚ β”‚ β”‚ β”œβ”€β”€ exceptions/ # Custom exceptions β”‚ β”‚ β”‚ β”œβ”€β”€ filters/ # Exception filters β”‚ β”‚ β”‚ └── interceptors/ # Response transform β”‚ β”‚ └── config/ # App configuration β”‚ └── package.json β”‚ β”œβ”€β”€ thepg/ # Flutter mobile app β”‚ β”œβ”€β”€ lib/ β”‚ β”‚ β”œβ”€β”€ main.dart # App entry point β”‚ β”‚ β”œβ”€β”€ core/ β”‚ β”‚ β”‚ β”œβ”€β”€ network/ # βœ… ApiClient + ApiResponse β”‚ β”‚ β”‚ β”œβ”€β”€ services/ # βœ… AuthService, UserService β”‚ β”‚ β”‚ β”œβ”€β”€ constants/ # βœ… ApiRoutes, ErrorCodes β”‚ β”‚ β”‚ β”œβ”€β”€ providers/ # βœ… AppProviders (all registered) β”‚ β”‚ β”‚ …