stabaliose fingerprint code

This commit is contained in:
2024-11-01 11:58:01 +02:00
parent 1d1f8f7767
commit 8adfed3359
5 changed files with 37 additions and 82 deletions

View File

@@ -4,6 +4,7 @@ enum Enviroment { dev, prod }
abstract class AppEnviroment {
static late String baseApiUrl;
static late String baseFileUrl;
static late String fingerPrintPluginKey;
static late Enviroment _enviroment;
static Enviroment get enviroment => _enviroment;
static setupEnv(Enviroment env) {
@@ -13,12 +14,14 @@ abstract class AppEnviroment {
{
baseApiUrl = "http://localhost:8080";
baseFileUrl = "http://localhost:9000";
//fingerPrintPluginKey = 'h5X7a5j14iUZCobI1ZeX';
break;
}
case Enviroment.prod:
{
baseApiUrl = "https://api.mzansi-innovation-hub.co.za";
baseFileUrl = "https://minio.mzansi-innovation-hub.co.za";
//fingerPrintPluginKey = 'h5X7a5j14iUZCobI1ZeX';
break;
}
}