first commit

This commit is contained in:
Lucas Saburido
2026-05-13 16:26:45 +01:00
commit cabf2025cd
252 changed files with 13524 additions and 0 deletions

23
lib/main.dart Normal file
View File

@@ -0,0 +1,23 @@
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'app/app.dart';
import 'core/config/supabase_config.dart';
/// RIOTZ - Underground Social & Music Platform
///
/// Main entry point for the application.
/// Tech Stack: Flutter frontend, Supabase backend.
void main() async {
WidgetsFlutterBinding.ensureInitialized();
// Initialize Supabase configuration
// This expects SUPABASE_URL and SUPABASE_ANON_KEY to be provided via --dart-define
await SupabaseConfig.initialize();
runApp(
const ProviderScope(
child: RiotzApp(),
),
);
}