mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 21:09:21 +00:00
20 lines
505 B
Dart
20 lines
505 B
Dart
import 'package:comunic/main.dart';
|
|
import 'package:comunic/models/config.dart';
|
|
|
|
/// Dev (internal) build configuration for the project
|
|
///
|
|
/// @author Pierre HUBERT
|
|
|
|
void main() {
|
|
Config.set(Config(
|
|
apiServerName: "devweb.local",
|
|
apiServerUri: "/comunic/api/",
|
|
apiServerSecure: false,
|
|
serviceName: "ComunicFlutter",
|
|
serviceToken: "G9sZCBmb3IgVWJ1bnR1CkNvbW1lbnRbbmVdPeCkieCkrOCkq",
|
|
termsOfServicesURL: "http://devweb.local/comunic/current/about.php?cgu",
|
|
));
|
|
|
|
subMain();
|
|
}
|