Files
fcs/lib/main-dev.dart

18 lines
444 B
Dart
Raw Normal View History

2020-05-29 07:45:27 +06:30
import 'package:flutter/material.dart';
import 'package:logging/logging.dart';
import 'app.dart';
2020-10-07 02:33:06 +06:30
import 'config.dart';
2020-05-29 07:45:27 +06:30
void main() {
2020-09-06 02:36:57 +06:30
WidgetsFlutterBinding.ensureInitialized();
2020-05-29 07:45:27 +06:30
Config(
2020-08-26 16:01:13 +06:30
flavor: Flavor.DEV,
2020-05-29 07:45:27 +06:30
color: Colors.blue,
2020-09-04 01:42:58 +06:30
apiURL: "https://asia-northeast1-fcs-dev1.cloudfunctions.net/API",
2020-09-20 05:34:49 +06:30
reportURL: "http://petrok.mokkon.com:8091",
reportProjectID: "fcs-dev",
2020-05-29 07:45:27 +06:30
level: Level.ALL);
runApp(App());
}