OregonTrail/src/index.ts

42 lines
1.6 KiB
TypeScript
Raw Normal View History

2024-02-22 06:15:16 +00:00
import dotenv from 'dotenv';
dotenv.config();
2024-02-23 06:18:00 +00:00
import WorkflowOrchestrator from './workflows/WorkflowOrchestrator';
import SessionManager from './rdrama/session/SessionManager';
import { CommentParser } from './rdrama/services/CommentParser';
2024-02-23 07:02:46 +00:00
import { DatabaseInitializer } from './db/initializeDatabase';
import { DatabaseService } from './db/services/database';
import { CommentProcessor } from './rdrama/services/CommentProcessor';
2024-02-23 06:18:00 +00:00
// Import other necessary services or configurations
2024-02-22 06:15:16 +00:00
2024-02-23 06:18:00 +00:00
async function startApplication() {
// Initialize SessionManager or other global configurations
const sessionManager = SessionManager.getInstance();
if (!process.env.RDRAMA_API_KEY) {
throw new Error('RDRAMA_API_KEY is undefined. Please set this environment variable.');
}
sessionManager.setAuthorizationToken(process.env.RDRAMA_API_KEY);
2024-02-23 07:02:46 +00:00
const databaseInitializer = DatabaseInitializer.getInstance();
const db = await databaseInitializer.getDbInstance()
2024-02-23 07:02:46 +00:00
if (!db) {
throw new Error('Failed to initialize the database.');
}
const databaseService = new DatabaseService(db)
2024-02-23 07:02:46 +00:00
2024-02-23 06:18:00 +00:00
// Initialize services with any required dependencies
const commentFetcher = new CommentProcessor(databaseService);
2024-02-23 06:18:00 +00:00
const commentParser = new CommentParser();
// Initialize and start your workflow
2024-02-23 07:02:46 +00:00
const workflowOrchestrator = new WorkflowOrchestrator(
commentFetcher,
commentParser
2024-02-23 07:02:46 +00:00
);
2024-02-23 06:18:00 +00:00
await workflowOrchestrator.executeWorkflow();
}
startApplication()
.then(() => console.log('Application started successfully.'))
.catch((error) => console.error('Application failed to start:', error));