Neda/Front/lib/config/app_config.dart
2026-03-05 23:08:50 +03:30

19 lines
1008 B
Dart

// Server configuration — update before building.
class AppConfig {
// ── Debug mode ──────────────────────────────────────────────────────────
// true → از داده‌های فیک استفاده می‌کند (بدون نیاز به سرور)
// false → به سرور واقعی وصل می‌شود
static const bool debug = true;
// ── Server ───────────────────────────────────────────────────────────────
static const String serverHost = '192.168.1.100';
static const int serverPort = 8000;
static const bool useSecure = false;
static String get baseUrl =>
'${useSecure ? 'https' : 'http'}://$serverHost:$serverPort';
static String get wsBaseUrl =>
'${useSecure ? 'wss' : 'ws'}://$serverHost:$serverPort';
}