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
314 B
Dart
11 lines
314 B
Dart
import 'package:io_photobooth/bootstrap.dart';
|
|
import 'package:io_photobooth/firebase_options_prod.dart';
|
|
|
|
Future<void> main() async {
|
|
const convertUrl = 'https://convert-fge4q4vwia-uc.a.run.app';
|
|
await bootstrap(
|
|
convertUrl: convertUrl,
|
|
firebaseOptions: DefaultFirebaseOptions.currentPlatform,
|
|
);
|
|
}
|