-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added contributing guide with info on setting up environment * updated readme in root of repo to link to contribution guide
- Loading branch information
Showing
2 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## Environment setup | ||
|
||
`flutter_appauth` uses [Melos](https://melos.invertase.dev) to manage the monorepo project. | ||
|
||
To install Melos, run the following command from a terminal/command prompt: | ||
|
||
``` | ||
dart pub global activate melos | ||
``` | ||
|
||
At the root of your locally cloned repository bootstrap the all dependencies and link them locally | ||
|
||
``` | ||
melos bootstrap | ||
``` | ||
|
||
This removes the need for providing manual [`dependency_overrides`](https://dart.dev/tools/pub/pubspec). There's no need to run `flutter pub get` either. All the packages, example app and tests will run for the locally cloned repository. The workflows setup on GitHub are also configured use Melos to validate changes. For more information on Melos, refer to its [website](https://melos.invertase.dev) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters