mirror of
https://github.com/flutter/holobooth.git
synced 2025-05-17 13:25:59 +08:00

* feat: adding production config files * better handling prod and dev environments * small fixes and changes regarding prod * fixing domains * feat: fixing config functions host * feat: properly loading firebase options depending on the env * adding final prod domain url * fix: lint
11 lines
313 B
Dart
11 lines
313 B
Dart
import 'package:io_photobooth/bootstrap.dart';
|
|
import 'package:io_photobooth/firebase_options_dev.dart';
|
|
|
|
Future<void> main() async {
|
|
const convertUrl = 'https://convert-it4sycsdja-uc.a.run.app';
|
|
await bootstrap(
|
|
convertUrl: convertUrl,
|
|
firebaseOptions: DefaultFirebaseOptions.currentPlatform,
|
|
);
|
|
}
|