# 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)
β β β β¦