Files
karvon_market/app_code/lib/configs/app_config.dart
jahongireshonqulov 9fbdabafb4 Initial commit
2025-10-17 19:42:02 +05:00

19 lines
947 B
Dart

class AppConfig{
static String appName ="KarvonMarket.uz";//Rename it with your app name
static const bool https = true;//Make it true if your domain support https otherwise make it false
// static const domain = "192.168.31.237/enmart-laravel"; //If you want to connect with local host provide your ip address instead localhost.
// static const domain = "domain.com"; //If you want to connect with your server replace it with your domain name
// static const domain = "grostore.themetags.com"; //If you want to connect with your server replace it with your domain name
static const domain = "karvonmarket.uz"; //If you want to connect with your server replace it with your domain name
//Don't try change below values
static const String apiEndPath = "api";
static const String protocol = https ? "https://" : "http://";
static const String baseUrl = protocol+ domain;
static const String apiUrl = "$baseUrl/$apiEndPath";
}