mirror of
https://github.com/flutter/holobooth.git
synced 2025-07-03 05:03:05 +08:00

* chore: wip * feat: twitter link * test: repository * test: coverage * chore: comment * chore: refactor * chore: refactor * Update lib/main_prod.dart Co-authored-by: Erick <erickzanardoo@gmail.com> * Update lib/main_prod.dart Co-authored-by: Erick <erickzanardoo@gmail.com> * feat: enable sharing just for developers * chore: localized text * chore: comments * chore: wip * chore: naming * feat: share facebook * chore: rename * chore: format * chore: typo * chore: nit Co-authored-by: Erick <erickzanardoo@gmail.com>
17 lines
557 B
Dart
17 lines
557 B
Dart
import 'package:holobooth/bootstrap.dart';
|
|
import 'package:holobooth/firebase_options_dev.dart';
|
|
|
|
Future<void> main() async {
|
|
const convertUrl = 'https://convert-it4sycsdja-uc.a.run.app';
|
|
const shareUrl =
|
|
'https://96e0700d-fe2c-4609-b43c-87093e447b75.web.app/share/';
|
|
const assetBucketUrl =
|
|
'https://storage.googleapis.com/io-photobooth-dev.appspot.com/uploads/';
|
|
await bootstrap(
|
|
convertUrl: convertUrl,
|
|
firebaseOptions: DefaultFirebaseOptions.currentPlatform,
|
|
shareUrl: shareUrl,
|
|
assetBucketUrl: assetBucketUrl,
|
|
);
|
|
}
|