Skip to content

Example Walkthrough

Frank Matranga edited this page Aug 30, 2019 · 1 revision

Let's say you want to add a feature or fix a bug in the codebase. Here is a short walk-through for how you would go about doing this.

Firstly, make sure you have setup the repository on your local computer. This means following the steps in the Wiki: installing git and node, cloning, getting the .env, setting up VSCode, etc. This will only have to be done once.

When ready, you can determine what you want to work on by checking through the Issues list on the repo. You are looking for open issues that have no assignees yet. Make sure the issue you find is not too difficult or broad in scope. You can filter issues to find open ones that you are interested in, e.g. all open issues with the Frontend and Enhancement labels.

If you have something you want to work on that isn't found in any issues yet, open a new issue for it and be as specific as possible about what the bug is or what the feature request is. There should always be an issue open for what you are working on, unless its very simple fixes.


  1. Create a new branch off the dev branch named specifically
  2. Run LATE in dev mode with the backend and frontend servers
  3. Make changes to the code
  4. Test the code locally
  5. Add and commit the changed files
  6. Push to origin after you are done with the item or are stopping