/bepoo

BePoo it's BeReal like social media app about pooping

Primary LanguageDart

BePoo

coverage style: very good analysis

Generated by the Very Good CLI 🤖

BePoo it's BeReal like social media app about pooping.


Getting Started 🚀

This project contains 3 flavors:

  • development
  • staging
  • production

To run the desired flavor either use the launch configuration in VSCode/Android Studio or use the following commands:

# Development
$ flutter run --flavor development --target lib/main_development.dart

# Staging
$ flutter run --flavor staging --target lib/main_staging.dart

# Production
$ flutter run --flavor production --target lib/main_production.dart

*BePoo works on iOS and Android.

Clean build:

$ flutter clean
$ flutter pub get
$ dart run build_runner build --delete-conflicting-outputs
$ dart run flutter_native_splash:create --flavors production,staging,development
$ dart run flutter_launcher_icons

Running Tests 🧪

To run all unit and widget tests use the following command:

$ flutter test --coverage --test-randomize-ordering-seed random

To view the generated coverage report you can use lcov.

# Generate Coverage Report
$ genhtml coverage/lcov.info -o coverage/

# Open Coverage Report
$ open coverage/index.html