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
25 changes: 10 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,40 +1,35 @@
# 📁 Mavluda Beauty Repository
# 📁 app

[Root](/.)

## 🎯 Purpose
Delivering luxury-tier architectural components and high-performance logic for the **Mavluda Beauty Repository** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience.
Delivering luxury-tier architectural components and high-performance logic for the **app** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience.

## 🏗️ Architecture
```mermaid
graph TD
Root["📁 Mavluda Beauty Repository"]
Root --> backend["📁 backend"]
Root --> frontend["📁 frontend"]
Root --> scripts["📁 scripts"]
Root --> _env["📄 .env"]
Root --> _gitignore["📄 .gitignore"]
Root --> _gitignore_append["📄 .gitignore_append"]
Root --> GEMINI_md["📄 GEMINI.md"]
Root --> generate_readmes_py["📄 generate_readmes.py"]
Root_app["📁 app"]
Root_app --> backend["📁 backend"]
Root_app --> frontend["📁 frontend"]
Root_app --> f__gitignore["📄 .gitignore"]
Root_app --> f_GEMINI_md["📄 GEMINI.md"]
Root_app --> f_SECURITY_md["📄 SECURITY.md"]
```

## 📄 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 |

## 🔗 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
26 changes: 14 additions & 12 deletions backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,31 +8,33 @@ Delivering luxury-tier architectural components and high-performance logic for t
## 🏗️ Architecture
```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 --> tsconfig_build_json["📄 tsconfig.build.json"]
Root --> tsconfig_json["📄 tsconfig.json"]
Root_backend["📁 backend"]
Root_backend --> src["📁 src"]
Root_backend --> f__prettierrc["📄 .prettierrc"]
Root_backend --> f_eslint_config_mjs["📄 eslint.config.mjs"]
Root_backend --> f_nest_cli_json["📄 nest-cli.json"]
Root_backend --> f_package_lock_json["📄 package-lock.json"]
Root_backend --> f_package_json["📄 package.json"]
Root_backend --> f_tsconfig_build_json["📄 tsconfig.build.json"]
Root_backend --> f_tsconfig_json["📄 tsconfig.json"]
```

## 📄 File Registry
| 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 |
| `eslint.config.mjs` | File | Provides core logic and orchestration for eslint.config.mjs. | @eslint |
| `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 |

## 🔗 Dependencies
- No external dependencies.
- `@eslint/js`
- `eslint-plugin-prettier/recommended`
- `globals`
- `typescript-eslint`

## 🛠️ Usage
```typescript
Expand Down
20 changes: 12 additions & 8 deletions backend/src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ Delivering luxury-tier architectural components and high-performance logic for t
## 🏗️ Architecture
```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 --> main_ts["📄 main.ts"]
Root_src["📁 src"]
Root_src --> common["📁 common"]
Root_src --> modules["📁 modules"]
Root_src --> f_app_controller_spec_ts["📄 app.controller.spec.ts"]
Root_src --> f_app_controller_ts["📄 app.controller.ts"]
Root_src --> f_app_module_ts["📄 app.module.ts"]
Root_src --> f_app_service_ts["📄 app.service.ts"]
Root_src --> f_main_ts["📄 main.ts"]
```

## 📄 File Registry
Expand All @@ -34,6 +34,9 @@ graph TD
- `./common/config/app-config.module`
- `./common/database/database.module`
- `./common/filters/i18n-exception.filter`
- `./common/guards/jwt-auth.guard`
- `./common/guards/roles.guard`
- `./common/seed/seed.module`
- `@modules/admin-settings`
- `@modules/auth`
- `@modules/booking`
Expand All @@ -49,6 +52,7 @@ graph TD
- `@nestjs/core`
- `@nestjs/serve-static`
- `@nestjs/testing`
- `cookie-parser`
- `path`

## 🛠️ Usage
Expand Down
22 changes: 12 additions & 10 deletions backend/src/common/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,21 @@ Delivering luxury-tier architectural components and high-performance logic for t
## 🏗️ Architecture
```mermaid
graph TD
Root["📁 common"]
Root --> config["📁 config"]
Root --> constants["📁 constants"]
Root --> database["📁 database"]
Root --> decorators["📁 decorators"]
Root --> filters["📁 filters"]
Root --> guards["📁 guards"]
Root --> interfaces["📁 interfaces"]
Root --> utils["📁 utils"]
Root_common["📁 common"]
Root_common --> config["📁 config"]
Root_common --> constants["📁 constants"]
Root_common --> database["📁 database"]
Root_common --> decorators["📁 decorators"]
Root_common --> filters["📁 filters"]
Root_common --> guards["📁 guards"]
Root_common --> interfaces["📁 interfaces"]
Root_common --> seed["📁 seed"]
Root_common --> utils["📁 utils"]
```

## 📄 File Registry
*No relevant files in this directory.*
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|

## 🔗 Dependencies
- No external dependencies.
Expand Down
10 changes: 5 additions & 5 deletions backend/src/common/config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ Delivering luxury-tier architectural components and high-performance logic for t
## 🏗️ Architecture
```mermaid
graph TD
Root["📁 config"]
Root --> app_config_module_ts["📄 app-config.module.ts"]
Root --> app_config_service_ts["📄 app-config.service.ts"]
Root --> configuration_ts["📄 configuration.ts"]
Root --> env_validation_ts["📄 env.validation.ts"]
Root_config["📁 config"]
Root_config --> f_app_config_module_ts["📄 app-config.module.ts"]
Root_config --> f_app_config_service_ts["📄 app-config.service.ts"]
Root_config --> f_configuration_ts["📄 configuration.ts"]
Root_config --> f_env_validation_ts["📄 env.validation.ts"]
```

## 📄 File Registry
Expand Down
4 changes: 2 additions & 2 deletions backend/src/common/constants/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Delivering luxury-tier architectural components and high-performance logic for t
## 🏗️ Architecture
```mermaid
graph TD
Root["📁 constants"]
Root --> error_messages_constant_ts["📄 error-messages.constant.ts"]
Root_constants["📁 constants"]
Root_constants --> f_error_messages_constant_ts["📄 error-messages.constant.ts"]
```

## 📄 File Registry
Expand Down
4 changes: 2 additions & 2 deletions backend/src/common/database/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Delivering luxury-tier architectural components and high-performance logic for t
## 🏗️ Architecture
```mermaid
graph TD
Root["📁 database"]
Root --> database_module_ts["📄 database.module.ts"]
Root_database["📁 database"]
Root_database --> f_database_module_ts["📄 database.module.ts"]
```

## 📄 File Registry
Expand Down
6 changes: 3 additions & 3 deletions backend/src/common/decorators/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ Delivering luxury-tier architectural components and high-performance logic for t
## 🏗️ Architecture
```mermaid
graph TD
Root["📁 decorators"]
Root --> public_decorator_ts["📄 public.decorator.ts"]
Root --> roles_decorator_ts["📄 roles.decorator.ts"]
Root_decorators["📁 decorators"]
Root_decorators --> f_public_decorator_ts["📄 public.decorator.ts"]
Root_decorators --> f_roles_decorator_ts["📄 roles.decorator.ts"]
```

## 📄 File Registry
Expand Down
4 changes: 2 additions & 2 deletions backend/src/common/filters/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Delivering luxury-tier architectural components and high-performance logic for t
## 🏗️ Architecture
```mermaid
graph TD
Root["📁 filters"]
Root --> i18n_exception_filter_ts["📄 i18n-exception.filter.ts"]
Root_filters["📁 filters"]
Root_filters --> f_i18n_exception_filter_ts["📄 i18n-exception.filter.ts"]
```

## 📄 File Registry
Expand Down
6 changes: 3 additions & 3 deletions backend/src/common/guards/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ Delivering luxury-tier architectural components and high-performance logic for t
## 🏗️ Architecture
```mermaid
graph TD
Root["📁 guards"]
Root --> jwt_auth_guard_ts["📄 jwt-auth.guard.ts"]
Root --> roles_guard_ts["📄 roles.guard.ts"]
Root_guards["📁 guards"]
Root_guards --> f_jwt_auth_guard_ts["📄 jwt-auth.guard.ts"]
Root_guards --> f_roles_guard_ts["📄 roles.guard.ts"]
```

## 📄 File Registry
Expand Down
4 changes: 2 additions & 2 deletions backend/src/common/interfaces/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Delivering luxury-tier architectural components and high-performance logic for t
## 🏗️ Architecture
```mermaid
graph TD
Root["📁 interfaces"]
Root --> authenticated_request_interface_ts["📄 authenticated-request.interface.ts"]
Root_interfaces["📁 interfaces"]
Root_interfaces --> f_authenticated_request_interface_ts["📄 authenticated-request.interface.ts"]
```

## 📄 File Registry
Expand Down
38 changes: 38 additions & 0 deletions backend/src/common/seed/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# 📁 seed

[Root](/.) > [backend](/backend) > [src](/backend/src) > [common](/backend/src/common) > [seed](/backend/src/common/seed)

## 🎯 Purpose
Delivering luxury-tier architectural components and high-performance logic for the **seed** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience.

## 🏗️ Architecture
```mermaid
graph TD
Root_seed["📁 seed"]
Root_seed --> f_seed_module_ts["📄 seed.module.ts"]
Root_seed --> f_seed_service_ts["📄 seed.service.ts"]
```

## 📄 File Registry
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `seed.module.ts` | TypeScript | Module configuration and dependency injection for seed.module.ts. | @common, @modules, @nestjs |
| `seed.service.ts` | TypeScript | Service layer business logic and data access for seed.service.ts. | @common, @modules, @nestjs |

## 🔗 Dependencies
- `./seed.service`
- `@common/config/app-config.module`
- `@common/config/app-config.service`
- `@modules/user`
- `@modules/user/domain/user.entity`
- `@nestjs/common`
- `bcrypt`

## 🛠️ Usage
```typescript
// Example usage within the Mavluda Beauty ecosystem
import { relevantMember } from './seed';

// Integrate into the application architecture
relevantMember.execute();
```
8 changes: 4 additions & 4 deletions backend/src/common/utils/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ Delivering luxury-tier architectural components and high-performance logic for t
## 🏗️ Architecture
```mermaid
graph TD
Root["📁 utils"]
Root --> file_system_ts["📄 file-system.ts"]
Root --> index_ts["📄 index.ts"]
Root --> object_ts["📄 object.ts"]
Root_utils["📁 utils"]
Root_utils --> f_file_system_ts["📄 file-system.ts"]
Root_utils --> f_index_ts["📄 index.ts"]
Root_utils --> f_object_ts["📄 object.ts"]
```

## 📄 File Registry
Expand Down
25 changes: 13 additions & 12 deletions backend/src/modules/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,22 @@ Delivering luxury-tier architectural components and high-performance logic for t
## 🏗️ Architecture
```mermaid
graph TD
Root["📁 modules"]
Root --> admin-settings["📁 admin-settings"]
Root --> auth["📁 auth"]
Root --> booking["📁 booking"]
Root --> gallery["📁 gallery"]
Root --> inventory["📁 inventory"]
Root --> partnership["📁 partnership"]
Root --> payment["📁 payment"]
Root --> treatments["📁 treatments"]
Root --> user["📁 user"]
Root --> veil["📁 veil"]
Root_modules["📁 modules"]
Root_modules --> admin_settings["📁 admin-settings"]
Root_modules --> auth["📁 auth"]
Root_modules --> booking["📁 booking"]
Root_modules --> gallery["📁 gallery"]
Root_modules --> inventory["📁 inventory"]
Root_modules --> partnership["📁 partnership"]
Root_modules --> payment["📁 payment"]
Root_modules --> treatments["📁 treatments"]
Root_modules --> user["📁 user"]
Root_modules --> veil["📁 veil"]
```

## 📄 File Registry
*No relevant files in this directory.*
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|

## 🔗 Dependencies
- No external dependencies.
Expand Down
14 changes: 7 additions & 7 deletions backend/src/modules/admin-settings/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ Delivering luxury-tier architectural components and high-performance logic for t
## 🏗️ Architecture
```mermaid
graph TD
Root["📁 admin-settings"]
Root --> application["📁 application"]
Root --> domain["📁 domain"]
Root --> infrastructure["📁 infrastructure"]
Root --> presentation["📁 presentation"]
Root --> admin_settings_module_ts["📄 admin-settings.module.ts"]
Root --> index_ts["📄 index.ts"]
Root_admin_settings["📁 admin-settings"]
Root_admin_settings --> application["📁 application"]
Root_admin_settings --> domain["📁 domain"]
Root_admin_settings --> infrastructure["📁 infrastructure"]
Root_admin_settings --> presentation["📁 presentation"]
Root_admin_settings --> f_admin_settings_module_ts["📄 admin-settings.module.ts"]
Root_admin_settings --> f_index_ts["📄 index.ts"]
```

## 📄 File Registry
Expand Down
4 changes: 2 additions & 2 deletions backend/src/modules/admin-settings/application/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Delivering luxury-tier architectural components and high-performance logic for t
## 🏗️ Architecture
```mermaid
graph TD
Root["📁 application"]
Root --> admin_settings_service_ts["📄 admin-settings.service.ts"]
Root_application["📁 application"]
Root_application --> f_admin_settings_service_ts["📄 admin-settings.service.ts"]
```

## 📄 File Registry
Expand Down
6 changes: 3 additions & 3 deletions backend/src/modules/admin-settings/domain/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ Delivering luxury-tier architectural components and high-performance logic for t
## 🏗️ Architecture
```mermaid
graph TD
Root["📁 domain"]
Root --> interfaces["📁 interfaces"]
Root --> admin_settings_entity_ts["📄 admin-settings.entity.ts"]
Root_domain["📁 domain"]
Root_domain --> interfaces["📁 interfaces"]
Root_domain --> f_admin_settings_entity_ts["📄 admin-settings.entity.ts"]
```

## 📄 File Registry
Expand Down
Loading