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
21 changes: 8 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 📁 Mavluda Beauty Repository
# 📁 Mavluda beauty repository

[Root](/.)

Expand All @@ -8,25 +8,20 @@ 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 --> _gitignore["📄 .gitignore"]
Root --> _gitignore_append["📄 .gitignore_append"]
Root --> GEMINI_md["📄 GEMINI.md"]
Root --> generate_readmes_py["📄 generate_readmes.py"]
Root_Mavluda_Beauty_Repository["📁 Mavluda Beauty Repository"]
Root_Mavluda_Beauty_Repository --> d_backend["⚙️ backend"]
Root_Mavluda_Beauty_Repository --> d_frontend["🎨 frontend"]
Root_Mavluda_Beauty_Repository --> f__gitignore["📄 .gitignore"]
Root_Mavluda_Beauty_Repository --> f_GEMINI_md["📄 GEMINI.md"]
Root_Mavluda_Beauty_Repository --> 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.
Expand Down
29 changes: 16 additions & 13 deletions backend/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 📁 backend
# ⚙️ Backend

[Root](/.) > [backend](/backend)

Expand All @@ -8,31 +8,34 @@ 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 --> d_src["💻 src"]
Root_backend --> d_test["🧪 test"]
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
36 changes: 15 additions & 21 deletions backend/src/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 📁 src
# 💻 Src

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

Expand All @@ -8,32 +8,26 @@ 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 --> d_common["📁 common"]
Root_src --> d_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
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `app.controller.spec.ts` | TypeScript | Unit testing and quality assurance for app.controller.spec.ts. | @nestjs |
| `app.controller.ts` | TypeScript | Handles incoming HTTP requests and routing for app.controller.ts. | @nestjs |
| `app.module.ts` | TypeScript | Defines the architectural module boundaries for app.module.ts. | @modules, @nestjs |
| `app.service.ts` | TypeScript | Encapsulates business logic and data access for app.service.ts. | @nestjs |
| `main.ts` | TypeScript | Provides core logic and orchestration for main.ts. | @nestjs |
| `app.controller.spec.ts` | TypeScript/JavaScript | Unit testing and quality assurance for app.controller.spec.ts. | @nestjs |
| `app.controller.ts` | TypeScript/JavaScript | Handles incoming HTTP requests and routing for app.controller.ts. | @nestjs |
| `app.module.ts` | TypeScript/JavaScript | Defines the architectural module boundaries for app.module.ts. | @modules, @nestjs |
| `app.service.ts` | TypeScript/JavaScript | Encapsulates business logic and data access for app.service.ts. | @nestjs |
| `main.ts` | TypeScript/JavaScript | Provides core logic and orchestration for main.ts. | @nestjs |

## 🔗 Dependencies
- `./app.controller`
- `./app.module`
- `./app.service`
- `./common/config/app-config.module`
- `./common/database/database.module`
- `./common/filters/i18n-exception.filter`
- `@modules/admin-settings`
- `@modules/auth`
- `@modules/booking`
Expand All @@ -49,7 +43,7 @@ graph TD
- `@nestjs/core`
- `@nestjs/serve-static`
- `@nestjs/testing`
- `path`
- *...and other minor dependencies.*

## 🛠️ Usage
```typescript
Expand Down
23 changes: 12 additions & 11 deletions backend/src/common/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 📁 common
# 📁 Common

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

Expand All @@ -8,19 +8,20 @@ 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 --> d_config["📁 config"]
Root_common --> d_constants["📁 constants"]
Root_common --> d_database["📁 database"]
Root_common --> d_decorators["📁 decorators"]
Root_common --> d_filters["📁 filters"]
Root_common --> d_guards["📁 guards"]
Root_common --> d_interfaces["📁 interfaces"]
Root_common --> d_seed["📁 seed"]
Root_common --> d_utils["🧰 utils"]
```

## 📄 File Registry
*No relevant files in this directory.*
*No files present in this directory.*

## 🔗 Dependencies
- No external dependencies.
Expand Down
23 changes: 10 additions & 13 deletions backend/src/common/config/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 📁 config
# 📁 Config

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

Expand All @@ -8,25 +8,22 @@ 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
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `app-config.module.ts` | TypeScript | Defines the architectural module boundaries for app-config.module.ts. | @nestjs |
| `app-config.service.ts` | TypeScript | Encapsulates business logic and data access for app-config.service.ts. | @nestjs |
| `configuration.ts` | TypeScript | Provides core logic and orchestration for configuration.ts. | N/A |
| `env.validation.ts` | TypeScript | Provides core logic and orchestration for env.validation.ts. | N/A |
| `app-config.module.ts` | TypeScript/JavaScript | Defines the architectural module boundaries for app-config.module.ts. | @nestjs |
| `app-config.service.ts` | TypeScript/JavaScript | Encapsulates business logic and data access for app-config.service.ts. | @nestjs |
| `configuration.ts` | TypeScript/JavaScript | Provides core logic and orchestration for configuration.ts. | N/A |
| `env.validation.ts` | TypeScript/JavaScript | Provides core logic and orchestration for env.validation.ts. | N/A |

## 🔗 Dependencies
- `./app-config.service`
- `./configuration`
- `./env.validation`
- `@nestjs/common`
- `@nestjs/config`
- `class-transformer`
Expand Down
8 changes: 4 additions & 4 deletions backend/src/common/constants/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 📁 constants
# 📁 Constants

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

Expand All @@ -8,14 +8,14 @@ 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
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `error-messages.constant.ts` | TypeScript | Provides core logic and orchestration for error-messages.constant.ts. | N/A |
| `error-messages.constant.ts` | TypeScript/JavaScript | Provides core logic and orchestration for error-messages.constant.ts. | N/A |

## 🔗 Dependencies
- No external dependencies.
Expand Down
8 changes: 4 additions & 4 deletions backend/src/common/database/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 📁 database
# 📁 Database

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

Expand All @@ -8,14 +8,14 @@ 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
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `database.module.ts` | TypeScript | Defines the architectural module boundaries for database.module.ts. | @nestjs |
| `database.module.ts` | TypeScript/JavaScript | Defines the architectural module boundaries for database.module.ts. | @nestjs |

## 🔗 Dependencies
- `@nestjs/common`
Expand Down
12 changes: 6 additions & 6 deletions backend/src/common/decorators/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 📁 decorators
# 📁 Decorators

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

Expand All @@ -8,16 +8,16 @@ 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
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `public.decorator.ts` | TypeScript | Provides core logic and orchestration for public.decorator.ts. | @nestjs |
| `roles.decorator.ts` | TypeScript | Provides core logic and orchestration for roles.decorator.ts. | @nestjs |
| `public.decorator.ts` | TypeScript/JavaScript | Provides core logic and orchestration for public.decorator.ts. | @nestjs |
| `roles.decorator.ts` | TypeScript/JavaScript | Provides core logic and orchestration for roles.decorator.ts. | @nestjs |

## 🔗 Dependencies
- `@nestjs/common`
Expand Down
9 changes: 4 additions & 5 deletions backend/src/common/filters/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 📁 filters
# 📁 Filters

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

Expand All @@ -8,17 +8,16 @@ 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
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `i18n-exception.filter.ts` | TypeScript | Provides core logic and orchestration for i18n-exception.filter.ts. | N/A |
| `i18n-exception.filter.ts` | TypeScript/JavaScript | Provides core logic and orchestration for i18n-exception.filter.ts. | N/A |

## 🔗 Dependencies
- `../constants/error-messages.constant`
- `express`

## 🛠️ Usage
Expand Down
14 changes: 6 additions & 8 deletions backend/src/common/guards/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 📁 guards
# 📁 Guards

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

Expand All @@ -8,20 +8,18 @@ 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
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `jwt-auth.guard.ts` | TypeScript | Provides core logic and orchestration for jwt-auth.guard.ts. | @nestjs |
| `roles.guard.ts` | TypeScript | Provides core logic and orchestration for roles.guard.ts. | @nestjs |
| `jwt-auth.guard.ts` | TypeScript/JavaScript | Provides core logic and orchestration for jwt-auth.guard.ts. | @nestjs |
| `roles.guard.ts` | TypeScript/JavaScript | Provides core logic and orchestration for roles.guard.ts. | @nestjs |

## 🔗 Dependencies
- `../decorators/public.decorator`
- `../decorators/roles.decorator`
- `@nestjs/common`
- `@nestjs/core`
- `@nestjs/passport`
Expand Down
8 changes: 4 additions & 4 deletions backend/src/common/interfaces/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 📁 interfaces
# 📁 Interfaces

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

Expand All @@ -8,14 +8,14 @@ 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
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `authenticated-request.interface.ts` | TypeScript | Provides core logic and orchestration for authenticated-request.interface.ts. | N/A |
| `authenticated-request.interface.ts` | TypeScript/JavaScript | Provides core logic and orchestration for authenticated-request.interface.ts. | N/A |

## 🔗 Dependencies
- `express`
Expand Down
Loading