1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 15:03:22 +00:00
comunicmobile/lib/main_dev.dart

18 lines
434 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"));
subMain();
}