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
23 changes: 11 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,30 @@
# πŸ“ 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"]
app["πŸ“ app"]
app --> backend["πŸ“ backend"]
app --> frontend["πŸ“ frontend"]
app --> _gitignore["πŸ“„ .gitignore"]
app --> GEMINI_md["πŸ“„ GEMINI.md"]
app --> _env["πŸ“„ .env"]
app --> generate_readmes_py["πŸ“„ generate_readmes.py"]
app --> 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 |
| `SECURITY.md` | Markdown | Provides core logic and orchestration for SECURITY.md. | N/A |
| `generate_readmes.py` | File | Provides core logic and orchestration for generate_readmes.py. | N/A |

## πŸ”— Dependencies
Expand Down
39 changes: 21 additions & 18 deletions backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,36 +8,39 @@ 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"]
backend["πŸ“ backend"]
backend --> test["πŸ“ test"]
backend --> src["πŸ“ src"]
backend --> package_lock_json["πŸ“„ package-lock.json"]
backend --> nest_cli_json["πŸ“„ nest-cli.json"]
backend --> _prettierrc["πŸ“„ .prettierrc"]
backend --> eslint_config_mjs["πŸ“„ eslint.config.mjs"]
backend --> tsconfig_json["πŸ“„ tsconfig.json"]
backend --> package_json["πŸ“„ package.json"]
backend --> tsconfig_build_json["πŸ“„ tsconfig.build.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 |
| `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. | @eslint |
| `nest-cli.json` | Config/JSON | Provides core logic and orchestration for nest-cli.json. | N/A |
| `package-lock.json` | Config/JSON | Provides core logic and orchestration for package-lock.json. | N/A |
| `package.json` | Config/JSON | Provides core logic and orchestration for package.json. | N/A |
| `tsconfig.build.json` | Config/JSON | Provides core logic and orchestration for tsconfig.build.json. | N/A |
| `tsconfig.json` | Config/JSON | 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
// Example usage within the Mavluda Beauty ecosystem
import { relevantMember } from './backend';
import { relevantMember } from './core';

// Integrate into the application architecture
relevantMember.execute();
Expand Down
33 changes: 11 additions & 22 deletions backend/src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
src["πŸ“ src"]
src --> common["πŸ“ common"]
src --> modules["πŸ“ modules"]
src --> app_controller_spec_ts["πŸ“„ app.controller.spec.ts"]
src --> main_ts["πŸ“„ main.ts"]
src --> app_module_ts["πŸ“„ app.module.ts"]
src --> app_controller_ts["πŸ“„ app.controller.ts"]
src --> app_service_ts["πŸ“„ app.service.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.module.ts` | TypeScript | Defines the architectural module boundaries for app.module.ts. | @nestjs, @modules |
| `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 |

## πŸ”— 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 @@ -44,17 +38,12 @@ graph TD
- `@modules/treatments`
- `@modules/user`
- `@modules/veil`
- `@nestjs/common`
- `@nestjs/config`
- `@nestjs/core`
- `@nestjs/serve-static`
- `@nestjs/testing`
- `path`
- ... and 6 more.

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

// Integrate into the application architecture
relevantMember.execute();
Expand Down
24 changes: 13 additions & 11 deletions backend/src/common/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,29 @@ 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"]
common["πŸ“ common"]
common --> database["πŸ“ database"]
common --> config["πŸ“ config"]
common --> utils["πŸ“ utils"]
common --> filters["πŸ“ filters"]
common --> interfaces["πŸ“ interfaces"]
common --> guards["πŸ“ guards"]
common --> decorators["πŸ“ decorators"]
common --> constants["πŸ“ constants"]
```

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

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

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

// Integrate into the application architecture
relevantMember.execute();
Expand Down
16 changes: 7 additions & 9 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"]
config["πŸ“ config"]
config --> app_config_service_ts["πŸ“„ app-config.service.ts"]
config --> env_validation_ts["πŸ“„ env.validation.ts"]
config --> configuration_ts["πŸ“„ configuration.ts"]
config --> app_config_module_ts["πŸ“„ app-config.module.ts"]
```

## πŸ“„ File Registry
Expand All @@ -24,17 +24,15 @@ graph TD
| `env.validation.ts` | TypeScript | Provides core logic and orchestration for env.validation.ts. | N/A |

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

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

// Integrate into the application architecture
relevantMember.execute();
Expand Down
6 changes: 3 additions & 3 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"]
constants["πŸ“ constants"]
constants --> error_messages_constant_ts["πŸ“„ error-messages.constant.ts"]
```

## πŸ“„ File Registry
Expand All @@ -23,7 +23,7 @@ graph TD
## πŸ› οΈ Usage
```typescript
// Example usage within the Mavluda Beauty ecosystem
import { relevantMember } from './constants';
import { relevantMember } from './core';

// Integrate into the application architecture
relevantMember.execute();
Expand Down
6 changes: 3 additions & 3 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"]
database["πŸ“ database"]
database --> database_module_ts["πŸ“„ database.module.ts"]
```

## πŸ“„ File Registry
Expand All @@ -25,7 +25,7 @@ graph TD
## πŸ› οΈ Usage
```typescript
// Example usage within the Mavluda Beauty ecosystem
import { relevantMember } from './database';
import { relevantMember } from './core';

// Integrate into the application architecture
relevantMember.execute();
Expand Down
8 changes: 4 additions & 4 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"]
decorators["πŸ“ decorators"]
decorators --> public_decorator_ts["πŸ“„ public.decorator.ts"]
decorators --> roles_decorator_ts["πŸ“„ roles.decorator.ts"]
```

## πŸ“„ File Registry
Expand All @@ -25,7 +25,7 @@ graph TD
## πŸ› οΈ Usage
```typescript
// Example usage within the Mavluda Beauty ecosystem
import { relevantMember } from './decorators';
import { relevantMember } from './core';

// Integrate into the application architecture
relevantMember.execute();
Expand Down
10 changes: 5 additions & 5 deletions backend/src/common/filters/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@ 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"]
filters["πŸ“ filters"]
filters --> 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 | Provides core logic and orchestration for i18n-exception.filter.ts. | @nestjs |

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

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

// Integrate into the application architecture
relevantMember.execute();
Expand Down
10 changes: 4 additions & 6 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"]
guards["πŸ“ guards"]
guards --> roles_guard_ts["πŸ“„ roles.guard.ts"]
guards --> jwt_auth_guard_ts["πŸ“„ jwt-auth.guard.ts"]
```

## πŸ“„ File Registry
Expand All @@ -20,16 +20,14 @@ graph TD
| `roles.guard.ts` | TypeScript | Provides core logic and orchestration for roles.guard.ts. | @nestjs |

## πŸ”— Dependencies
- `../decorators/public.decorator`
- `../decorators/roles.decorator`
- `@nestjs/common`
- `@nestjs/core`
- `@nestjs/passport`

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

// Integrate into the application architecture
relevantMember.execute();
Expand Down
6 changes: 3 additions & 3 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"]
interfaces["πŸ“ interfaces"]
interfaces --> authenticated_request_interface_ts["πŸ“„ authenticated-request.interface.ts"]
```

## πŸ“„ File Registry
Expand All @@ -23,7 +23,7 @@ graph TD
## πŸ› οΈ Usage
```typescript
// Example usage within the Mavluda Beauty ecosystem
import { relevantMember } from './interfaces';
import { relevantMember } from './core';

// Integrate into the application architecture
relevantMember.execute();
Expand Down
Loading