이벤트 가져오기 위젯 테스트 추가 및 테스트 훅 도입

This commit is contained in:
2025-09-12 06:33:44 +09:00
parent 107abc963f
commit a5f2544d11
121 changed files with 39277 additions and 3911 deletions
+5 -1
View File
@@ -1,6 +1,10 @@
class ApiConfig {
// 백엔드 API 기본 URL
static const String baseUrl = 'https://lanebow.com/api';
// --dart-define=API_BASE_URL=... 로 오버라이드 가능. 기본값은 프로덕션.
static String get baseUrl => const String.fromEnvironment(
'API_BASE_URL',
defaultValue: 'https://lanebow.com/api',
);
// API 엔드포인트
static const String login = '/auth/login';