Change PIN to 1451
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
13
apps/captain-mobile-v2/flutter/lib/config/api_config.dart
Normal file
13
apps/captain-mobile-v2/flutter/lib/config/api_config.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
class ApiConfig {
|
||||
// Captain Mobile v2 API
|
||||
static const String baseUrl = 'http://69.62.126.110:3030';
|
||||
static const String wsUrl = 'ws://69.62.126.110:3030';
|
||||
|
||||
// For local development
|
||||
// static const String baseUrl = 'http://localhost:3030';
|
||||
// static const String wsUrl = 'ws://localhost:3030';
|
||||
|
||||
static const Duration connectionTimeout = Duration(seconds: 30);
|
||||
static const Duration reconnectDelay = Duration(seconds: 3);
|
||||
static const int maxReconnectAttempts = 5;
|
||||
}
|
||||
Reference in New Issue
Block a user