Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 8 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# πŸ“ Mavluda Beauty Repository
# πŸ“ app

[Root](/.)

Expand All @@ -8,33 +8,30 @@ Delivering luxury-tier architectural components and high-performance logic for t
## πŸ—οΈ Architecture
```mermaid
graph TD
Root["πŸ“ Mavluda Beauty Repository"]
Root --> backend["πŸ“ backend"]
Root --> frontend["πŸ“ frontend"]
Root --> scripts["πŸ“ scripts"]
Root --> _env["πŸ“„ .env"]
Root["πŸ“ app"]
Root --> _gitignore["πŸ“„ .gitignore"]
Root --> _gitignore_append["πŸ“„ .gitignore_append"]
Root --> GEMINI_md["πŸ“„ GEMINI.md"]
Root --> SECURITY_md["πŸ“„ SECURITY.md"]
Root --> backend["πŸ“ backend"]
Root --> frontend["πŸ“ frontend"]
Root --> generate_readmes_py["πŸ“„ generate_readmes.py"]
```

## πŸ“„ File Registry
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `.env` | File | Provides core logic and orchestration for .env. | N/A |
| `.gitignore` | File | Provides core logic and orchestration for .gitignore. | N/A |
| `.gitignore_append` | File | Provides core logic and utilities for this domain. | N/A |
| `GEMINI.md` | Markdown | Provides core logic and orchestration for GEMINI.md. | N/A |
| `generate_readmes.py` | File | Provides core logic and orchestration for generate_readmes.py. | N/A |
| `SECURITY.md` | Markdown | Provides core logic and orchestration for SECURITY.md. | N/A |
| `generate_readmes.py` | Python | Provides core logic and orchestration for generate_readmes.py. | N/A |

## πŸ”— Dependencies
- No external dependencies.

## πŸ› οΈ Usage
```typescript
// Example usage within the Mavluda Beauty ecosystem
import { relevantMember } from './core';
import { relevantMember } from './app';

// Integrate into the application architecture
relevantMember.execute();
Expand Down
16 changes: 8 additions & 8 deletions backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ Delivering luxury-tier architectural components and high-performance logic for t
```mermaid
graph TD
Root["πŸ“ backend"]
Root --> src["πŸ“ src"]
Root --> test["πŸ“ test"]
Root --> _prettierrc["πŸ“„ .prettierrc"]
Root --> eslint_config_mjs["πŸ“„ eslint.config.mjs"]
Root --> nest_cli_json["πŸ“„ nest-cli.json"]
Root --> package_lock_json["πŸ“„ package-lock.json"]
Root --> package_json["πŸ“„ package.json"]
Root --> src["πŸ“ src"]
Root --> test["πŸ“ test"]
Root --> tsconfig_build_json["πŸ“„ tsconfig.build.json"]
Root --> tsconfig_json["πŸ“„ tsconfig.json"]
```
Expand All @@ -24,12 +24,12 @@ graph TD
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `.prettierrc` | File | Provides core logic and orchestration for .prettierrc. | N/A |
| `eslint.config.mjs` | JavaScript | Provides core logic and orchestration for eslint.config.mjs. | N/A |
| `nest-cli.json` | JSON Configuration | Provides core logic and orchestration for nest-cli.json. | N/A |
| `package-lock.json` | JSON Configuration | Provides core logic and orchestration for package-lock.json. | N/A |
| `package.json` | JSON Configuration | Provides core logic and orchestration for package.json. | N/A |
| `tsconfig.build.json` | JSON Configuration | Provides core logic and orchestration for tsconfig.build.json. | N/A |
| `tsconfig.json` | JSON Configuration | Provides core logic and orchestration for tsconfig.json. | N/A |
| `eslint.config.mjs` | File | Provides core logic and orchestration for eslint.config.mjs. | N/A |
| `nest-cli.json` | JSON | Provides core logic and orchestration for nest-cli.json. | N/A |
| `package-lock.json` | JSON | Provides core logic and orchestration for package-lock.json. | N/A |
| `package.json` | JSON | Provides core logic and orchestration for package.json. | N/A |
| `tsconfig.build.json` | JSON | Provides core logic and orchestration for tsconfig.build.json. | N/A |
| `tsconfig.json` | JSON | Provides core logic and orchestration for tsconfig.json. | N/A |

## πŸ”— Dependencies
- No external dependencies.
Expand Down
4 changes: 2 additions & 2 deletions backend/src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ Delivering luxury-tier architectural components and high-performance logic for t
```mermaid
graph TD
Root["πŸ“ src"]
Root --> common["πŸ“ common"]
Root --> modules["πŸ“ modules"]
Root --> app_controller_spec_ts["πŸ“„ app.controller.spec.ts"]
Root --> app_controller_ts["πŸ“„ app.controller.ts"]
Root --> app_module_ts["πŸ“„ app.module.ts"]
Root --> app_service_ts["πŸ“„ app.service.ts"]
Root --> common["πŸ“ common"]
Root --> main_ts["πŸ“„ main.ts"]
Root --> modules["πŸ“ modules"]
```

## πŸ“„ File Registry
Expand Down
4 changes: 3 additions & 1 deletion backend/src/common/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ graph TD
```

## πŸ“„ File Registry
*No relevant files in this directory.*
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| No files | - | - | - |

## πŸ”— Dependencies
- No external dependencies.
Expand Down
6 changes: 4 additions & 2 deletions backend/src/modules/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Delivering luxury-tier architectural components and high-performance logic for t
```mermaid
graph TD
Root["πŸ“ modules"]
Root --> admin-settings["πŸ“ admin-settings"]
Root --> admin_settings["πŸ“ admin-settings"]
Root --> auth["πŸ“ auth"]
Root --> booking["πŸ“ booking"]
Root --> gallery["πŸ“ gallery"]
Expand All @@ -22,7 +22,9 @@ graph TD
```

## πŸ“„ File Registry
*No relevant files in this directory.*
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| No files | - | - | - |

## πŸ”— Dependencies
- No external dependencies.
Expand Down
4 changes: 2 additions & 2 deletions backend/src/modules/admin-settings/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ Delivering luxury-tier architectural components and high-performance logic for t
```mermaid
graph TD
Root["πŸ“ admin-settings"]
Root --> admin_settings_module_ts["πŸ“„ admin-settings.module.ts"]
Root --> application["πŸ“ application"]
Root --> domain["πŸ“ domain"]
Root --> index_ts["πŸ“„ index.ts"]
Root --> infrastructure["πŸ“ infrastructure"]
Root --> presentation["πŸ“ presentation"]
Root --> admin_settings_module_ts["πŸ“„ admin-settings.module.ts"]
Root --> index_ts["πŸ“„ index.ts"]
```

## πŸ“„ File Registry
Expand Down
2 changes: 1 addition & 1 deletion backend/src/modules/admin-settings/domain/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Delivering luxury-tier architectural components and high-performance logic for t
```mermaid
graph TD
Root["πŸ“ domain"]
Root --> interfaces["πŸ“ interfaces"]
Root --> admin_settings_entity_ts["πŸ“„ admin-settings.entity.ts"]
Root --> interfaces["πŸ“ interfaces"]
```

## πŸ“„ File Registry
Expand Down
4 changes: 3 additions & 1 deletion backend/src/modules/admin-settings/infrastructure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ graph TD
```

## πŸ“„ File Registry
*No relevant files in this directory.*
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| No files | - | - | - |

## πŸ”— Dependencies
- No external dependencies.
Expand Down
2 changes: 1 addition & 1 deletion backend/src/modules/admin-settings/presentation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Delivering luxury-tier architectural components and high-performance logic for t
```mermaid
graph TD
Root["πŸ“ presentation"]
Root --> dto["πŸ“ dto"]
Root --> admin_settings_controller_ts["πŸ“„ admin-settings.controller.ts"]
Root --> dto["πŸ“ dto"]
```

## πŸ“„ File Registry
Expand Down
6 changes: 3 additions & 3 deletions backend/src/modules/auth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ Delivering luxury-tier architectural components and high-performance logic for t
```mermaid
graph TD
Root["πŸ“ auth"]
Root --> dto["πŸ“ dto"]
Root --> infrastructure["πŸ“ infrastructure"]
Root --> interfaces["πŸ“ interfaces"]
Root --> auth_controller_ts["πŸ“„ auth.controller.ts"]
Root --> auth_module_ts["πŸ“„ auth.module.ts"]
Root --> auth_service_ts["πŸ“„ auth.service.ts"]
Root --> dto["πŸ“ dto"]
Root --> index_ts["πŸ“„ index.ts"]
Root --> infrastructure["πŸ“ infrastructure"]
Root --> interfaces["πŸ“ interfaces"]
Root --> telegram_auth_service_ts["πŸ“„ telegram-auth.service.ts"]
```

Expand Down
4 changes: 2 additions & 2 deletions backend/src/modules/booking/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ Delivering luxury-tier architectural components and high-performance logic for t
graph TD
Root["πŸ“ booking"]
Root --> application["πŸ“ application"]
Root --> booking_module_ts["πŸ“„ booking.module.ts"]
Root --> domain["πŸ“ domain"]
Root --> index_ts["πŸ“„ index.ts"]
Root --> infrastructure["πŸ“ infrastructure"]
Root --> presentation["πŸ“ presentation"]
Root --> booking_module_ts["πŸ“„ booking.module.ts"]
Root --> index_ts["πŸ“„ index.ts"]
```

## πŸ“„ File Registry
Expand Down
4 changes: 3 additions & 1 deletion backend/src/modules/booking/infrastructure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ graph TD
```

## πŸ“„ File Registry
*No relevant files in this directory.*
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| No files | - | - | - |

## πŸ”— Dependencies
- No external dependencies.
Expand Down
2 changes: 1 addition & 1 deletion backend/src/modules/booking/presentation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Delivering luxury-tier architectural components and high-performance logic for t
```mermaid
graph TD
Root["πŸ“ presentation"]
Root --> dto["πŸ“ dto"]
Root --> booking_controller_ts["πŸ“„ booking.controller.ts"]
Root --> dto["πŸ“ dto"]
```

## πŸ“„ File Registry
Expand Down
4 changes: 2 additions & 2 deletions backend/src/modules/gallery/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ graph TD
Root["πŸ“ gallery"]
Root --> application["πŸ“ application"]
Root --> domain["πŸ“ domain"]
Root --> infrastructure["πŸ“ infrastructure"]
Root --> presentation["πŸ“ presentation"]
Root --> gallery_module_ts["πŸ“„ gallery.module.ts"]
Root --> index_ts["πŸ“„ index.ts"]
Root --> infrastructure["πŸ“ infrastructure"]
Root --> presentation["πŸ“ presentation"]
```

## πŸ“„ File Registry
Expand Down
4 changes: 3 additions & 1 deletion backend/src/modules/gallery/infrastructure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ graph TD
```

## πŸ“„ File Registry
*No relevant files in this directory.*
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| No files | - | - | - |

## πŸ”— Dependencies
- No external dependencies.
Expand Down
4 changes: 2 additions & 2 deletions backend/src/modules/inventory/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ graph TD
Root["πŸ“ inventory"]
Root --> application["πŸ“ application"]
Root --> domain["πŸ“ domain"]
Root --> infrastructure["πŸ“ infrastructure"]
Root --> presentation["πŸ“ presentation"]
Root --> index_ts["πŸ“„ index.ts"]
Root --> infrastructure["πŸ“ infrastructure"]
Root --> inventory_module_ts["πŸ“„ inventory.module.ts"]
Root --> presentation["πŸ“ presentation"]
```

## πŸ“„ File Registry
Expand Down
4 changes: 3 additions & 1 deletion backend/src/modules/inventory/infrastructure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ graph TD
```

## πŸ“„ File Registry
*No relevant files in this directory.*
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| No files | - | - | - |

## πŸ”— Dependencies
- No external dependencies.
Expand Down
4 changes: 2 additions & 2 deletions backend/src/modules/partnership/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ graph TD
Root["πŸ“ partnership"]
Root --> application["πŸ“ application"]
Root --> domain["πŸ“ domain"]
Root --> infrastructure["πŸ“ infrastructure"]
Root --> presentation["πŸ“ presentation"]
Root --> index_ts["πŸ“„ index.ts"]
Root --> infrastructure["πŸ“ infrastructure"]
Root --> partnership_module_ts["πŸ“„ partnership.module.ts"]
Root --> presentation["πŸ“ presentation"]
```

## πŸ“„ File Registry
Expand Down
4 changes: 3 additions & 1 deletion backend/src/modules/partnership/infrastructure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ graph TD
```

## πŸ“„ File Registry
*No relevant files in this directory.*
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| No files | - | - | - |

## πŸ”— Dependencies
- No external dependencies.
Expand Down
2 changes: 1 addition & 1 deletion backend/src/modules/payment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ Delivering luxury-tier architectural components and high-performance logic for t
```mermaid
graph TD
Root["πŸ“ payment"]
Root --> strategies["πŸ“ strategies"]
Root --> index_ts["πŸ“„ index.ts"]
Root --> payment_controller_ts["πŸ“„ payment.controller.ts"]
Root --> payment_module_ts["πŸ“„ payment.module.ts"]
Root --> payment_service_ts["πŸ“„ payment.service.ts"]
Root --> strategies["πŸ“ strategies"]
```

## πŸ“„ File Registry
Expand Down
2 changes: 1 addition & 1 deletion backend/src/modules/treatments/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ graph TD
Root["πŸ“ treatments"]
Root --> application["πŸ“ application"]
Root --> domain["πŸ“ domain"]
Root --> index_ts["πŸ“„ index.ts"]
Root --> infrastructure["πŸ“ infrastructure"]
Root --> presentation["πŸ“ presentation"]
Root --> index_ts["πŸ“„ index.ts"]
Root --> treatments_module_ts["πŸ“„ treatments.module.ts"]
```

Expand Down
4 changes: 3 additions & 1 deletion backend/src/modules/treatments/infrastructure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ graph TD
```

## πŸ“„ File Registry
*No relevant files in this directory.*
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| No files | - | - | - |

## πŸ”— Dependencies
- No external dependencies.
Expand Down
2 changes: 1 addition & 1 deletion backend/src/modules/user/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ graph TD
Root["πŸ“ user"]
Root --> application["πŸ“ application"]
Root --> domain["πŸ“ domain"]
Root --> index_ts["πŸ“„ index.ts"]
Root --> infrastructure["πŸ“ infrastructure"]
Root --> presentation["πŸ“ presentation"]
Root --> index_ts["πŸ“„ index.ts"]
Root --> user_module_ts["πŸ“„ user.module.ts"]
```

Expand Down
4 changes: 3 additions & 1 deletion backend/src/modules/user/infrastructure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ graph TD
```

## πŸ“„ File Registry
*No relevant files in this directory.*
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| No files | - | - | - |

## πŸ”— Dependencies
- No external dependencies.
Expand Down
2 changes: 1 addition & 1 deletion backend/src/modules/veil/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ graph TD
Root["πŸ“ veil"]
Root --> application["πŸ“ application"]
Root --> domain["πŸ“ domain"]
Root --> index_ts["πŸ“„ index.ts"]
Root --> infrastructure["πŸ“ infrastructure"]
Root --> presentation["πŸ“ presentation"]
Root --> index_ts["πŸ“„ index.ts"]
Root --> veil_module_ts["πŸ“„ veil.module.ts"]
```

Expand Down
4 changes: 3 additions & 1 deletion backend/src/modules/veil/infrastructure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ graph TD
```

## πŸ“„ File Registry
*No relevant files in this directory.*
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| No files | - | - | - |

## πŸ”— Dependencies
- No external dependencies.
Expand Down
2 changes: 1 addition & 1 deletion backend/test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ graph TD
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `app.e2e-spec.ts` | TypeScript | Unit testing and quality assurance for app.e2e-spec.ts. | @nestjs |
| `jest-e2e.json` | JSON Configuration | Provides core logic and orchestration for jest-e2e.json. | N/A |
| `jest-e2e.json` | JSON | Provides core logic and orchestration for jest-e2e.json. | N/A |

## πŸ”— Dependencies
- `./../src/app.module`
Expand Down
Loading