Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 556 Bytes

File metadata and controls

44 lines (31 loc) · 556 Bytes
title Quickstart
sidebar_position 1

Quickstart

1) Initialize environment

From repository root:

./tools/init_dev_env.sh

2) Run automated checks

./build.sh

3) Common manual checks

melos bootstrap
melos analyze
melos test

For mobile app package-specific tests, run from the package directory:

cd apps/mobile_chat_app
flutter test

4) Build web app

cd apps/mobile_chat_app
flutter build web --release

For full build details, see BUILD.md at the repository root.