2019-06-24 16:55:41 +00:00
|
|
|
import 'package:comunic/main.dart';
|
|
|
|
import 'package:comunic/models/config.dart';
|
|
|
|
|
|
|
|
/// Online (communiquons.org) build configuration for the project
|
|
|
|
///
|
|
|
|
/// @author Pierre HUBERT
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
Config.set(Config(
|
2020-04-25 12:39:55 +00:00
|
|
|
apiServerName: "api.communiquons.org",
|
|
|
|
apiServerUri: "/",
|
|
|
|
apiServerSecure: true,
|
2021-02-13 15:03:07 +00:00
|
|
|
clientName: "ComunicFlutter",
|
2020-04-25 12:40:35 +00:00
|
|
|
termsOfServicesURL: "https://about.communiquons.org/about/terms/",
|
2020-04-25 12:39:55 +00:00
|
|
|
));
|
2019-06-24 16:55:41 +00:00
|
|
|
|
|
|
|
subMain();
|
|
|
|
}
|