Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 856 Bytes

CONTRIBUTING.md

File metadata and controls

21 lines (17 loc) · 856 Bytes

How to Contribute

Prerequisites

To contribute to Gromnom, make sure you have the following installed on your system and properly setup.

  • Dart + Flutter
  • Android Studio (for Android Virtual Device (AVD) with Android 5.0+ API level 21)
  • VS Code (IDE)

Setting up the repository

Step 1: Fork the repository on GitHub.

Step 2: Clone the repository to your development machine and configure it::

  $ git clone https://github.com/<YOUR USERNAME>/gromnom.git
  $ cd gromnom
  $ git remote add upstream https://github.com/viveknigam3003/gromnom.git
  # Optional to track changes on the next branch
  $ git branch --track next

We follow the standard GitHub Flow, so make sure to go through it before you start making changes.