Files
holobooth/lib/main_dev.dart
Oscar 2941bee640 feat: share in social (#349)
* 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>
2023-01-16 15:51:56 +00:00

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,
);
}