18 lines
		
	
	
		
			541 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			541 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| class Env {
 | |
|   static const bool isDevelopment = true;
 | |
| 
 | |
|   // Configuration de l'auto-login en développement
 | |
|   static const String devAdminEmail = 'paul.fournel@em2events.fr';
 | |
|   static const String devAdminPassword =
 | |
|       "Pastis51!"; // À remplacer par le vrai mot de passe
 | |
| 
 | |
|   // URLs et endpoints
 | |
|   static const String baseUrl = 'https://em2rp-951dc.firebaseapp.com';
 | |
| 
 | |
|   // Configuration Firebase
 | |
|   static const String firebaseProjectId = 'em2rp-951dc';
 | |
| 
 | |
|   // Autres configurations
 | |
|   static const int apiTimeout = 30000; // 30 secondes
 | |
| }
 | 
