graph TB
subgraph "Data Layer"
Gems[("Gems DB<br/>name, headline, address,<br/>coordinates, keywords,<br/>images, features")]
Services[("Services DB<br/>name, description,<br/>pricing, duration<br/>(TOUR type only)")]
end
subgraph "Embedding Layer"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Module } from '@nestjs/common' | |
| import { ConfigModule } from '@nestjs/config' | |
| import { ScheduleModule } from '@nestjs/schedule' | |
| @Module({ | |
| imports: [ | |
| ScheduleModule.forRoot(), | |
| ConfigModule.forRoot({ | |
| envFilePath: [`.env.${process.env.NODE_ENV}`, '.env', `.env.${process.env.NODE_ENV}.local`, '.env.local'], | |
| isGlobal: true, |