-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFolder structure
More file actions
41 lines (41 loc) · 1.83 KB
/
Folder structure
File metadata and controls
41 lines (41 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
royalmix-backend/
├─ .gitignore
├─ package.json
├─ index.js
├─ src/
│ └─ controllers/
│ └─ orders.js
├─ .env.example
└─ .github/
└─ workflows/
└─ ci.yml
royalmix/
├── apps/
│ ├── food/ # Food Delivery app module
│ ├── health/ # Health Services app module
│ ├── delivery/ # Delivery + Tracking module
│ └── supplier/ # Supplier management module
├── backend/
│ ├── api/
│ │ ├── routes/ # REST endpoints skeleton
│ │ ├── controllers/ # Business logic placeholders
│ │ └── middleware/ # Authentication, logging, error handling
│ ├── config/ # Testnet + Mainnet configs (config.json)
│ └── tests/ # Unit + integration test examples
├── docs/
│ ├── architecture/ # System diagrams, flowcharts
│ ├── suppliers/ # Supplier categories + agreements
│ ├── health/ # Health system documentation
│ ├── food/ # Food delivery system docs
│ └── policies/ # 21 Royal Mix Business Policies
├── ui/
│ ├── components/ # React / Flutter components
│ └── assets/ # Logos, icons, images
├── configs/
│ └── testnet_config.json # Environment configuration
├── scripts/ # Setup scripts / seed data
├── README_DEV.md # Developers Testnet guide
├── README_CORP.md # Professional / Corporate guide
├── README_INV.md # Investor / Strategic guide
├── LICENSE
└── .gitignore