feat(weeks2-3): data ingestion, geospatial launcher, intelligence endpoints

This commit is contained in:
cawcenter
2025-12-14 22:28:30 -05:00
parent ffd7033501
commit 40a46a791f
12 changed files with 1456 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
import { pool } from './db';
import { pool } from '../db';
/**
* Migration System for God Mode
@@ -90,7 +90,7 @@ export async function getMigrationStatus(): Promise<{
`);
return {
tables: result.rows.map(r => r.table_name)
tables: result.rows.map((r: { table_name: string }) => r.table_name)
};
} catch (error) {
return {