Skip to content

Latest commit

Β 

History

History
128 lines (89 loc) Β· 5.22 KB

File metadata and controls

128 lines (89 loc) Β· 5.22 KB

Contributing

If you're reading this, you're awesome! Thank you for helping us make this project great and being a part of the community. Here are a few guidelines that will help you along the way.

Sending a pull request

Pull requests are always welcome, but before working on a large change or something that changes the API, it is best to open an issue first to discuss it with the maintainers.

When in doubt, keep your pull requests small. To give a PR the best chance of getting accepted, don't bundle more than one feature or bug fix per pull request. It's always best to create two smaller PRs than one big one.

When adding new features or modifying existing, please attempt to include tests to confirm the new behaviour.

Increasing the chance of a PR being accepted

We will only accept a pull request for which all tests pass. Make sure the following is true:

  • The branch is targeted at main.
  • The branch is not behind its target.
  • If a feature is being added, test cases for the functionality of the feature.
  • If a bug is being fixed, test cases that fail without the fix are included.
  • Documentation is up to date.
  • The code is linted.
  • The commit messages are formatted.
  • The pull request template is complete.

Getting started

  1. Clone appcues-flutter-plugin locally:

    git clone https://github.com/appcues/appcues-flutter-plugin.git

    If you cloned a while ago, get the latest changes from upstream:

    git checkout main
    git pull upstream main
  2. Never work directly on main. Create a new feature/fix branch:

    git checkout -b <branch-name>
  3. Commit your changes in logical chunks following the commit message guidelines.

  4. Always update documentation and unit tests.

  5. Make your changes, lint, then push your local branch to the remote:

    git push -u origin <branch-name>
  6. Open a pull request to get your <branch-name> merged into main

Branch structure

Never work directly on main. Create a new feature/fix branch, following the convention:

feature/my-branch

fix/my-branch

Development workflow

To get started with the project, install the plugin dependencies, starting at the root folder of the repository:

flutter pub get

Then install the example app dependencies:

cd example
flutter pub get

Open the root folder of the repository in Android studio. Android Studio provides menu options to run the example app on either iOS or Android, with any running iOS simulator or Android emulator.

You can also run the example on the command line, from the example directory:

flutter run

If multiple available devices are open, the command line tool will prompt to select which device to build and deploy the example.

To edit the Swift plugin, open ios/appcues_flutter/Package.swift in Xcode.

To edit the Kotlin plugin, use the Android Studio project and navigate to android/src/main/kotlin/com/appcues/flutter.

Commit messages

Commit messages should follow the pattern :emoji: Imperative commit message. See How to Write an Imperative Message for a great explanation.

Gitmoji is an emoji guide for your commit messages which improves searchability and scannability of the commit history. In particular Appcues utilizes the following. When considering which Gitmoji is correct, use this list from top to bottom (e.g. moving files in an example app should use 🎬, not 🚚, because 🎬 appears closer to the top of the list).

Emoji Shortcut Meaning
πŸ”§ :wrench: Changing configuration/pipeline files
🎬 :clapper: Updating example app
πŸ’₯ :boom: Introducing breaking changes
⬆️ :arrow_up: Upgrading dependencies
πŸ“Έ :camera_with_flash: Updating snapshots
βœ… :white_check_mark: Updating tests
πŸ’‘ :bulb: Documenting source code
πŸ“ :pencil: Writing docs
🚨 :rotating_light: Fixing linter warnings
πŸ”Š :loud_sound: Updating logging
πŸ’„ :lipstick: Updating styles
β™Ώ :wheelchair: Improving accessibility
🚚 :truck: Moving or renaming files
♻️ :recycle: Refactoring code
πŸ— :building_construction: Making architectural changes
🎨 :art: Improving structure/format of the code
πŸ‘Œ :ok_hand: Updating code due to code review changes
πŸ› :bug: Fixing a bug
✨ :sparkles: Introducing a new feature

The review process

  • Maintainers, and potentially other committers, may comment on the changes and suggest modifications. Changes can be added by simply pushing more commits to the same branch.
  • Lively, polite, rapid technical debate is encouraged from everyone in the community. The outcome may be a rejection of the entire change.
  • Keep in mind that changes to more critical parts of appcues-flutter-plugin will be subjected to more review, and may require more testing and proof of its correctness than other changes.
  • The person who starts the discussion should be the person who resolves the discussion.
  • In order to pass review your PR will need approval from at least one maintainer.