36 lines
852 B
Dart
36 lines
852 B
Dart
import 'package:onufitness/environment/environment_config.dart';
|
|
|
|
class ProductionConfig implements EnvironmentConfig {
|
|
@override
|
|
String get apiBaseUrl => "https://api.onufitness.com";
|
|
|
|
@override
|
|
String get webUrl => "onufitness.com";
|
|
|
|
@override
|
|
String get sentryDsn =>
|
|
"https://efbb706b9daece2dad28bee3577fbc55@o4509013627502592.ingest.us.sentry.io/4509014149365760";
|
|
|
|
@override
|
|
String get environment => "Production";
|
|
|
|
@override
|
|
bool get enableLogging => false;
|
|
|
|
@override
|
|
bool get useSentry => true;
|
|
|
|
@override
|
|
String get googleIosClientId =>
|
|
"1015952306116-r2ee1e0a6ohchpbeb4q0cpub0gqeda39.apps.googleusercontent.com";
|
|
|
|
@override
|
|
String get agoraAppId => "c34ee6dfd326499daa63b54455412b55";
|
|
|
|
@override
|
|
String get agoraChatAppKey => "411364828#1571168";
|
|
|
|
@override
|
|
int get streamEndsTime => 10;
|
|
}
|