Skip to content
Merged
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
10 changes: 0 additions & 10 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,10 +0,0 @@
# Stellar Configuration
STELLAR_HORIZON_URL=https://horizon-testnet.stellar.org
CONTRACT_ID=CCYU3LOQI34VHVN3ZOSEBHHKL4YK36FMTOEGLRYDUDRGS7JOLLRKCEQM

# Database Configuration (existing)
DB_HOST=localhost
DB_PORT=5432
DB_USERNAME=postgres
DB_PASSWORD=password
DB_DATABASE=tradeflow
3 changes: 1 addition & 2 deletions src/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { HealthModule } from './health/health.module';
import { IndexerService } from './indexer.service';

@Module({
imports: [HealthModule],
controllers: [AppController],
providers: [AppService, IndexerService],
providers: [AppService],
})
export class AppModule {}
82 changes: 0 additions & 82 deletions src/indexer.service.ts

This file was deleted.