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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,7 @@ dist-ssr
!**/README.md
!GEMINI.md
!AGENTS.md

# Allow generated readmes to be committed
!**/README.md
!README.md
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ 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 --> README_md["πŸ“„ README.md"]
Root --> SECURITY_md["πŸ“„ SECURITY.md"]
Root --> generate_readmes_py["πŸ“„ generate_readmes.py"]
```

Expand All @@ -24,17 +24,19 @@ graph TD
|---|---|---|---|
| `.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 |
| `README.md` | Markdown | Provides core logic and configuration for README.md. | N/A |
| `SECURITY.md` | Markdown | Provides core logic and configuration for SECURITY.md. | N/A |
| `generate_readmes.py` | Python Script | Provides core logic and orchestration for generate_readmes.py. | N/A |

## πŸ”— Dependencies
- No external dependencies.
- `./Mavluda Beauty Repository`
- `./{dir_name}`

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

// Integrate into the application architecture
relevantMember.execute();
Expand Down
10 changes: 8 additions & 2 deletions backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ graph TD
Root --> src["πŸ“ src"]
Root --> test["πŸ“ test"]
Root --> _prettierrc["πŸ“„ .prettierrc"]
Root --> README_md["πŸ“„ README.md"]
Root --> eslint_config_mjs["πŸ“„ eslint.config.mjs"]
Root --> nest_cli_json["πŸ“„ nest-cli.json"]
Root --> package_lock_json["πŸ“„ package-lock.json"]
Expand All @@ -24,15 +25,20 @@ 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 |
| `README.md` | Markdown | Provides core logic and configuration for README.md. | N/A |
| `eslint.config.mjs` | JavaScript | 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.
- `./backend`
- `@eslint/js`
- `eslint-plugin-prettier/recommended`
- `globals`
- `typescript-eslint`

## πŸ› οΈ Usage
```typescript
Expand Down
3 changes: 3 additions & 0 deletions backend/src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ graph TD
Root["πŸ“ src"]
Root --> common["πŸ“ common"]
Root --> modules["πŸ“ modules"]
Root --> README_md["πŸ“„ README.md"]
Root --> app_controller_spec_ts["πŸ“„ app.controller.spec.ts"]
Root --> app_controller_ts["πŸ“„ app.controller.ts"]
Root --> app_module_ts["πŸ“„ app.module.ts"]
Expand All @@ -21,6 +22,7 @@ graph TD
## πŸ“„ File Registry
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `README.md` | Markdown | Provides core logic and configuration for README.md. | N/A |
| `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 |
Expand All @@ -34,6 +36,7 @@ graph TD
- `./common/config/app-config.module`
- `./common/database/database.module`
- `./common/filters/i18n-exception.filter`
- `./src`
- `@modules/admin-settings`
- `@modules/auth`
- `@modules/booking`
Expand Down
7 changes: 5 additions & 2 deletions backend/src/common/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,16 @@ graph TD
Root --> guards["πŸ“ guards"]
Root --> interfaces["πŸ“ interfaces"]
Root --> utils["πŸ“ utils"]
Root --> README_md["πŸ“„ README.md"]
```

## πŸ“„ File Registry
*No relevant files in this directory.*
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `README.md` | Markdown | Provides core logic and configuration for README.md. | N/A |

## πŸ”— Dependencies
- No external dependencies.
- `./common`

## πŸ› οΈ Usage
```typescript
Expand Down
4 changes: 4 additions & 0 deletions backend/src/common/config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Delivering luxury-tier architectural components and high-performance logic for t
```mermaid
graph TD
Root["πŸ“ config"]
Root --> README_md["πŸ“„ README.md"]
Root --> app_config_module_ts["πŸ“„ app-config.module.ts"]
Root --> app_config_service_ts["πŸ“„ app-config.service.ts"]
Root --> configuration_ts["πŸ“„ configuration.ts"]
Expand All @@ -18,18 +19,21 @@ graph TD
## πŸ“„ File Registry
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `README.md` | Markdown | Provides core logic and configuration for README.md. | N/A |
| `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 |

## πŸ”— Dependencies
- `./app-config.service`
- `./config`
- `./configuration`
- `./env.validation`
- `@nestjs/common`
- `@nestjs/config`
- `class-transformer`
- `class-validator`

## πŸ› οΈ Usage
```typescript
Expand Down
4 changes: 3 additions & 1 deletion backend/src/common/constants/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,18 @@ Delivering luxury-tier architectural components and high-performance logic for t
```mermaid
graph TD
Root["πŸ“ constants"]
Root --> README_md["πŸ“„ README.md"]
Root --> error_messages_constant_ts["πŸ“„ error-messages.constant.ts"]
```

## πŸ“„ File Registry
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `README.md` | Markdown | Provides core logic and configuration for README.md. | N/A |
| `error-messages.constant.ts` | TypeScript | Provides core logic and orchestration for error-messages.constant.ts. | N/A |

## πŸ”— Dependencies
- No external dependencies.
- `./constants`

## πŸ› οΈ Usage
```typescript
Expand Down
3 changes: 3 additions & 0 deletions backend/src/common/database/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,18 @@ Delivering luxury-tier architectural components and high-performance logic for t
```mermaid
graph TD
Root["πŸ“ database"]
Root --> README_md["πŸ“„ README.md"]
Root --> database_module_ts["πŸ“„ database.module.ts"]
```

## πŸ“„ File Registry
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `README.md` | Markdown | Provides core logic and configuration for README.md. | N/A |
| `database.module.ts` | TypeScript | Defines the architectural module boundaries for database.module.ts. | @nestjs |

## πŸ”— Dependencies
- `./database`
- `@nestjs/common`
- `@nestjs/config`
- `@nestjs/mongoose`
Expand Down
3 changes: 3 additions & 0 deletions backend/src/common/decorators/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,20 @@ Delivering luxury-tier architectural components and high-performance logic for t
```mermaid
graph TD
Root["πŸ“ decorators"]
Root --> README_md["πŸ“„ README.md"]
Root --> public_decorator_ts["πŸ“„ public.decorator.ts"]
Root --> roles_decorator_ts["πŸ“„ roles.decorator.ts"]
```

## πŸ“„ File Registry
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `README.md` | Markdown | Provides core logic and configuration for README.md. | N/A |
| `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 |

## πŸ”— Dependencies
- `./decorators`
- `@nestjs/common`

## πŸ› οΈ Usage
Expand Down
6 changes: 5 additions & 1 deletion backend/src/common/filters/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,20 @@ Delivering luxury-tier architectural components and high-performance logic for t
```mermaid
graph TD
Root["πŸ“ filters"]
Root --> README_md["πŸ“„ README.md"]
Root --> 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 |
| `README.md` | Markdown | Provides core logic and configuration for README.md. | N/A |
| `i18n-exception.filter.ts` | TypeScript | Provides core logic and orchestration for i18n-exception.filter.ts. | @nestjs |

## πŸ”— Dependencies
- `../constants/error-messages.constant`
- `./filters`
- `@nestjs/common`
- `express`

## πŸ› οΈ Usage
Expand Down
3 changes: 3 additions & 0 deletions backend/src/common/guards/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,22 @@ Delivering luxury-tier architectural components and high-performance logic for t
```mermaid
graph TD
Root["πŸ“ guards"]
Root --> README_md["πŸ“„ README.md"]
Root --> jwt_auth_guard_ts["πŸ“„ jwt-auth.guard.ts"]
Root --> roles_guard_ts["πŸ“„ roles.guard.ts"]
```

## πŸ“„ File Registry
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `README.md` | Markdown | Provides core logic and configuration for README.md. | N/A |
| `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 |

## πŸ”— Dependencies
- `../decorators/public.decorator`
- `../decorators/roles.decorator`
- `./guards`
- `@nestjs/common`
- `@nestjs/core`
- `@nestjs/passport`
Expand Down
3 changes: 3 additions & 0 deletions backend/src/common/interfaces/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,18 @@ Delivering luxury-tier architectural components and high-performance logic for t
```mermaid
graph TD
Root["πŸ“ interfaces"]
Root --> README_md["πŸ“„ README.md"]
Root --> authenticated_request_interface_ts["πŸ“„ authenticated-request.interface.ts"]
```

## πŸ“„ File Registry
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `README.md` | Markdown | Provides core logic and configuration for README.md. | N/A |
| `authenticated-request.interface.ts` | TypeScript | Provides core logic and orchestration for authenticated-request.interface.ts. | N/A |

## πŸ”— Dependencies
- `./interfaces`
- `express`

## πŸ› οΈ Usage
Expand Down
5 changes: 5 additions & 0 deletions backend/src/common/utils/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Delivering luxury-tier architectural components and high-performance logic for t
```mermaid
graph TD
Root["πŸ“ utils"]
Root --> README_md["πŸ“„ README.md"]
Root --> file_system_ts["πŸ“„ file-system.ts"]
Root --> index_ts["πŸ“„ index.ts"]
Root --> object_ts["πŸ“„ object.ts"]
Expand All @@ -17,11 +18,15 @@ graph TD
## πŸ“„ File Registry
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `README.md` | Markdown | Provides core logic and configuration for README.md. | N/A |
| `file-system.ts` | TypeScript | Provides core logic and orchestration for file-system.ts. | N/A |
| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A |
| `object.ts` | TypeScript | Provides core logic and orchestration for object.ts. | N/A |

## πŸ”— Dependencies
- `./file-system`
- `./object`
- `./utils`
- `fs`
- `path`
- `util`
Expand Down
9 changes: 6 additions & 3 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 @@ -19,13 +19,16 @@ graph TD
Root --> treatments["πŸ“ treatments"]
Root --> user["πŸ“ user"]
Root --> veil["πŸ“ veil"]
Root --> README_md["πŸ“„ README.md"]
```

## πŸ“„ File Registry
*No relevant files in this directory.*
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `README.md` | Markdown | Provides core logic and configuration for README.md. | N/A |

## πŸ”— Dependencies
- No external dependencies.
- `./modules`

## πŸ› οΈ Usage
```typescript
Expand Down
8 changes: 8 additions & 0 deletions backend/src/modules/admin-settings/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,28 @@ graph TD
Root --> domain["πŸ“ domain"]
Root --> infrastructure["πŸ“ infrastructure"]
Root --> presentation["πŸ“ presentation"]
Root --> README_md["πŸ“„ README.md"]
Root --> admin_settings_module_ts["πŸ“„ admin-settings.module.ts"]
Root --> index_ts["πŸ“„ index.ts"]
```

## πŸ“„ File Registry
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `README.md` | Markdown | Provides core logic and configuration for README.md. | N/A |
| `admin-settings.module.ts` | TypeScript | Defines the architectural module boundaries for admin-settings.module.ts. | @nestjs |
| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A |

## πŸ”— Dependencies
- `./admin-settings`
- `./admin-settings.module`
- `./application/admin-settings.service`
- `./domain/admin-settings.entity`
- `./infrastructure/repositories/admin-settings.repository`
- `./infrastructure/schemas/admin-settings.schema`
- `./presentation/admin-settings.controller`
- `./presentation/dto/create-admin-settings.dto`
- `./presentation/dto/update-admin-settings.dto`
- `@nestjs/common`
- `@nestjs/mongoose`

Expand Down
3 changes: 3 additions & 0 deletions backend/src/modules/admin-settings/application/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,20 @@ Delivering luxury-tier architectural components and high-performance logic for t
```mermaid
graph TD
Root["πŸ“ application"]
Root --> README_md["πŸ“„ README.md"]
Root --> admin_settings_service_ts["πŸ“„ admin-settings.service.ts"]
```

## πŸ“„ File Registry
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `README.md` | Markdown | Provides core logic and configuration for README.md. | N/A |
| `admin-settings.service.ts` | TypeScript | Encapsulates business logic and data access for admin-settings.service.ts. | @nestjs |

## πŸ”— Dependencies
- `../domain/admin-settings.entity`
- `../infrastructure/repositories/admin-settings.repository`
- `./application`
- `@nestjs/common`

## πŸ› οΈ Usage
Expand Down
5 changes: 4 additions & 1 deletion backend/src/modules/admin-settings/domain/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,19 @@ Delivering luxury-tier architectural components and high-performance logic for t
graph TD
Root["πŸ“ domain"]
Root --> interfaces["πŸ“ interfaces"]
Root --> README_md["πŸ“„ README.md"]
Root --> admin_settings_entity_ts["πŸ“„ admin-settings.entity.ts"]
```

## πŸ“„ File Registry
| File Name | Type | Responsibility | Key Aliases Used |
|---|---|---|---|
| `README.md` | Markdown | Provides core logic and configuration for README.md. | N/A |
| `admin-settings.entity.ts` | TypeScript | Provides core logic and orchestration for admin-settings.entity.ts. | N/A |

## πŸ”— Dependencies
- No external dependencies.
- `./domain`
- `./interfaces/admin-settings.interface`

## πŸ› οΈ Usage
```typescript
Expand Down
Loading