configureDev method

void configureDev(
  1. DevModeConfig config
)

Configure development mode with Supabase credentials

When in development mode, SDK makes calls directly to Supabase instead of going through the Railway backend.

Implementation

void configureDev(DevModeConfig config) {
  _supabaseURL = config.supabaseURL;
  _supabaseKey = config.supabaseKey;

  _logger.info('Development mode configured with Supabase');
}