Initial commit

This commit is contained in:
jahongireshonqulov
2025-10-17 19:42:02 +05:00
commit 9fbdabafb4
1420 changed files with 28021 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
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";
}