fixed up some turbo libs to remove old config

This commit is contained in:
Boki 2025-06-18 15:42:38 -04:00
parent 6cc5b339bc
commit 46de1755e9
11 changed files with 6 additions and 12 deletions

View file

@ -13,7 +13,6 @@
},
"dependencies": {
"@stock-bot/cache": "*",
"@stock-bot/config": "*",
"@stock-bot/event-bus": "*",
"@stock-bot/http": "*",
"@stock-bot/logger": "*",

View file

@ -4,7 +4,6 @@
import { Hono } from 'hono';
import { cors } from 'hono/cors';
import { Browser } from '@stock-bot/browser';
import { loadEnvVariables } from '@stock-bot/config';
import { getLogger, shutdownLoggers } from '@stock-bot/logger';
import { connectMongoDB, disconnectMongoDB } from '@stock-bot/mongodb-client';
import { processItems, QueueManager, type QueueConfig } from '@stock-bot/queue';
@ -13,8 +12,6 @@ import { initializeIBResources } from './providers/ib.tasks';
import { initializeProxyResources } from './providers/proxy.tasks';
import { exchangeRoutes, healthRoutes, queueRoutes } from './routes';
// Load environment variables
loadEnvVariables();
const app = new Hono();

View file

@ -4,7 +4,6 @@
"build": {
"dependsOn": [
"@stock-bot/cache#build",
"@stock-bot/config#build",
"@stock-bot/event-bus#build",
"@stock-bot/http#build",
"@stock-bot/logger#build",