mobile_skt/lib/config.dart

19 lines
754 B
Dart
Raw Normal View History

2024-03-31 17:13:29 +08:00
// ignore_for_file: constant_identifier_names
// Global config
class GloablConfig {
2024-04-12 09:56:00 +08:00
// static const BASE_URL = "http://10.0.2.2:8001/api/";
// static const OSS_URL = "http://10.0.2.2:8001";
2024-03-31 17:13:29 +08:00
2024-04-12 09:56:00 +08:00
static const BASE_URL = "http://144.123.43.138:3001/api/";
static const OSS_URL = "http://144.123.43.138:3001";
2024-04-01 14:59:20 +08:00
// static const BASE_URL = "http://192.168.60.220:8001/api/";
// static const OSS_URL = "http://192.168.60.220:8001";
static const DOMAIN_NAME = "山矿通";
static const DEBUG = true;
static const PRIVACY_POLICY = 'http://h5.heeru.xyz/privacyPolicy.html';
static const TERM_OF_USER = 'http://h5.heeru.xyz/termConditions.html';
static const APPLE_STORE_PAGE = 'https://apps.apple.com/cn/app';
2024-03-28 15:13:27 +08:00
static const DIO_TIMEOUT = 10;
}