11 lines
345 B
TypeScript
11 lines
345 B
TypeScript
|
|
import { supabaseService } from '../src/services/SupabaseService.js';
|
|
|
|
async function check() {
|
|
const { data } = await supabaseService.client.from('trade_profiles').select('name, risk_per_trade_percent');
|
|
console.log('--- CURRENT PROFILES ---');
|
|
console.log(JSON.stringify(data, null, 2));
|
|
process.exit(0);
|
|
}
|
|
check();
|