mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-04-03 16:10:41 +00:00
added script to setup the repo
This commit is contained in:
parent
2dee63e78e
commit
f26fc8af7c
1 changed files with 16 additions and 0 deletions
16
scripts/setup_fork.sh
Normal file
16
scripts/setup_fork.sh
Normal file
|
@ -0,0 +1,16 @@
|
|||
constants="const String contactEmail = '';
|
||||
const String iapServerUrl = '';
|
||||
const String issuesReportUrl = 'https://github.com/vodemn/m3_lightmeter/issues/new/choose';
|
||||
const String sourceCodeUrl = 'https://github.com/vodemn/m3_lightmeter/';"
|
||||
|
||||
firebase_options="// ignore_for_file: type=lint
|
||||
import 'package:firebase_core/firebase_core.dart' show FirebaseOptions;
|
||||
|
||||
class DefaultFirebaseOptions {
|
||||
static FirebaseOptions get currentPlatform =>
|
||||
FirebaseOptions(apiKey: '', appId: '', messagingSenderId: '', projectId: '');
|
||||
}"
|
||||
|
||||
echo "$constants" > "lib/constants.dart"
|
||||
echo "$firebase_options" > "lib/firebase_options.dart"
|
||||
sh .github/scripts/stub_iap.sh
|
Loading…
Reference in a new issue