Thanks for taking the time to consider contributing! We very much appreciate your time and effort. This document outlines the many ways you can contribute to our project, and provides detailed guidance on best practices. We look forward to your help!
MMGIS (Multi-Mission Geographical Information System) is a highly-configurable, cross-mission web-based and open-source mapping application. It's been used on MSL, InSight, Mars 2020, EMIT, MAIA, Lunar VIPER, ... to name a few. And we would much appreciate your help! Here are the basics on contributing:
- Anyone can contribute!
- You can contribute at any time
- You can contribute in any way (code, documentation, discussion topics, issue ticket discussions, etc.)
Our team adapts to our stakeholders' processes and schedules and develops any and all feature requests to be as mission-agnostic and reusable as possible.
Since we're an open source project, we also accept and encourage ad-hoc contributions at any time - just note it may take some time to review / decide whether to incorporate.
- See our open list of issue tickets and pick a ticket(s) you're interested in, or write your own!
- Fork the
development
branch - Make a feature branch
- Make your changes
- Include the issue number as
#{issue_number}
in both your commit messages and PR title. - Submit a PR
Feel free to reach out and ask questions!
See our Ways to Contribute section.
Before you begin contributing to our project, it'll be a good idea to ensure you've satisfied the below pre-requisites.
Our project has our licensing terms, including rules governing redistribution, documented in our LICENSE file. Please take a look at that file and ensure you understand the terms. This will impact how we, or others, use your contributions.
Our Code of Conduct helps facilitate a positive interaction environment for everyone involved with the team, and provides guidance on what to do if you experience problematic behavior. Read more in our CODE_OF_CONDUCT.md, and make sure you agree to its terms.
For patch contributions, see our Developer Documentation (TBD) for more details on how to set up your local environment, to best contribute to our project.
At a minimum however to submit patches (if using Git), you'll want to ensure you have:
- An account on the Version Control System our project uses (i.e. GitHub).
- The Version Control System client (i.e. Git) installed on your local machine.
- The ability to edit, build, and test our project on your local machine. Again, see our
README.md
or detailed developer guide for more details
Before contributing changes to our project, it's a great idea to be familiar with our communication channels and to socialize your potential contributions to get feedback early. This will help give you context for your contributions, no matter their form.
Our communication channels are:
- Issue tracking system - a regularly monitored area to report issues with our software or propose changes
- Discussion board - an permanently archived place to hold conversations related to our project, and to propose as well as show+tell topics to the contributor team. This resource can be searched for old discussions.
Our project integrates contributions from many people, and so we'd like to outline a process you can use to visualize how your contributions may be integrated if you provide something.
flowchart TD
repo_proj[(Our Repository)]-->|Fork|repo_fork[(Your Forked Repository)]
repo_fork-->|Make|patch(Your Changes)
patch-->|Submit|pr(Pull Request)
pr==>|Approved|repo_proj
pr-->|Changes Requested|repo_fork
Forking our repository, as opposed to directly committing to a branch is the preferred way to propose changes.
See this GitHub guide on forking for information specific to GitHub.com
Make sure people are aware you're working on a patch! Check out our issue tracking system and find an open issue you'd like to work against, or alternatively file a new issue and mention you're working on a patch.
Our project typically has the following branches available, make sure to fork either the default branch or a branch someone else already tagged with a particular issue ticket you're working with.
master
- default branch, and contains the latest MMGIS releasedevelopment
- active development area for MMGIS deliverables, and typically ahead ofmaster
. This is the branch you want to fork from.
Note: Some customers prefer the latest features of the development
branch at the expense of stability. All changes pulled into development
should be considered operational with a reasonable degree of confidence.
Within your local development environment, this is the stage at which you'll propose your changes, and commit those changes back to version control. See the README.md or development guide for more specifics on what you'll need as prerequisites to setup your local development environment.
Commit messages to version control should reference a ticket in their Issue Number - title / summary line:
#248 - Show an example commit message title
This makes sure that tickets are updated on GitHub with references to commits that are related to them.
Commit should always be atomic. Keep solutions isolated whenever possible. Filler commits such as "clean up white space" or "fix typo" should be merged together before making a pull request, and significant sub-feature branches should be rebased to preserve commit history. Please ensure your commit history is clean and meaningful!
Pull requests are the core way our project will receive your patch contributions. Navigate to your branch on your own fork within the version control system, and submit a pull request or submit the patch text to our project.
Please make sure to provide a meaningful text description to your pull requests, whenever submitted. Our pull-request template will be auto-generated for you when you create your pull-request. See the template here.
Working on your first Pull Request? See guide: How to Contribute to an Open Source Project on GitHub
Reviewing pull-requests, or any kinds of proposed patch changes, is an art. That being said, we follow the following best practices:
- Intent - is the purpose of your pull-request clearly stated?
- Solution - is your pull-request doing what you want it to?
- Correctness - is your pull-request doing what you want it to correctly?
- Small Patches - is your patch of a level of complexity and brevity that it can actually be reviewed by a human being? Or is does it involve too much content for one pull request?
- Coding best practices - are you following best practices in the coding / contribution language being used?
- Readability - is your patch readable, and ultimately maintainable, by others?
- Reproducibility - is your patch reproducible by others?
- Tests - do you have or have conducted meaningful tests?
Do you like to talk about new features, changes, requests?
Issue tickets are a very simple way to get involved in our project. It also helps new contributors get an understanding of the project more comprehensively. This is a great place to get started with the project if you're not sure where to start.
See our list of issues at: https://github.com/NASA-AMMOS/MMGIS/issues
Often we receive duplicate issues that can confuse project members on which issue ticket to hold conversations upon.
Here's how you can help:
- Scan the list of open issue tickets for duplicate titles, or internal wording
- If you find duplicates, copy / paste the below message on the conversation thread of the issue ticket that has less participants involved
This is a duplicate issue. Please migrate conversations over to [issue-XYZ](hyperlink to issue)
Issue tickets can vary in complexity, and issues labeled with good first issue
labels are often a great way to get started with the project as a newcomer.
Take a look at our issue tracking system, and filter by good first issue
for issues that are low-complexity, and that will help you get familiar with our issue tracking and patch submission process.
Labels within our issue tracking system are a great way to quickly sort through tickets. The project may not yet have labels to cover the full variety of issue tickets. Take a look through our list of issues, and if you notice a set of issue tickets that seem similar but are not categorized with an existing label, go ahead submit a request within one of the issues you've looked at with the following text:
I've noticed several other issues that are of the same category as this issue. Shall we make a new label for these types of issues?
Resolving bugs is a priority for our project. We welcome bug reports. However, please make sure to do the following prior to submitting a bug report:
- Check for duplicates - there may be a bug report already describing your issue, so check the issue tracking system first.
Here's some guidance on submitting a bug issue:
- Navigate to our issue tracking system and file a new issue
- Select a bug template (if available) for your issue
- Fill out the template fields to the best of your ability, including output snippets or screenshots where applicable
- Follow the general guidelines below for extra information about your bug
- Include a code snippet if you have it showcasing the bug
- Provide reproducible steps of how to recreate the bug
- If the bug triggers an exception or error message, include the full message or stacktrace
- Provide information about your operating system and the version of our project you're using
Security vulnerabilities should not be filed to the regular issue tracking system.
Report your security vulnerabilities to (see contact links): https://github.com/tariqksoliman
Please be sure to:
- Indicate the severity of the vulnerability
- Provide any workarounds, if you know them
- Provide return-contact information to follow-up with you if needed
Reviewing others' contributions is a great way to learn about best practices in both contributions as well as software.
Take a look at our pull requests tracking system, and try the following options for providing a review:
- Read the code / patch associated with the pull-request, and take note of any coding, bug, or documentation issues if found
- Try to recreate the pull-request patch on your local machine, and report if it has issues with your system in particular
- Scan over suggested feedback from other contributors, and provide feedback if necessary
Documentation is the core way our users and contributors learn about the project. We place a high value on the quality, thoroughness, and readability of our documentation. Writing or editing documentation is an excellent way to contribute to our project without performing active coding.
- Check if any duplicate issues exist that cover your documentation contribution idea / task, and add comments to those tickets with your thoughts.
- If no duplicates exist, create a new issue ticket and get a conversation started before making documentation changes.
Some guidelines for documentation best practices (summarized from Google's excellent documentation guide):
- Minimum viable docs - don't do less documentation than your readers need, but also don't do more
- Changed best practice use cases = changed docs - if your best practice use cases have changed, remember to update your documentation
- Delete old docs - continually clean your documentation tree, and remove outdated docs regularly
The overall structure of our project documentation is as follows:
- Source-controlled documentation
- README.md - top-level information about how to run, build, and contribute to the project
- CODE_OF_CONDUCT.md - best practices and guidance on how to work well with other people in the project, and suggestions on dealing with interpersonal issues
- CONTRIBUTING.md - guidance on contributing to the project
- Discussion Boards
- Discussion Board - discussions related to MMGIS
For directions on contributing to our source-controlled documentation:
- Ensure you have development prerequisites cleared.
- Have your development environment set up properly.
- Go through our development process, including proposing changes to our project.
Our MMGIS configuration documentation for developers and site administrators is located at https://nasa-ammos.github.io/MMGIS/
This documentation site is hosted by GitHub through the /docs
folder in the development
branch. The site is a static site built with Jeykll.
To ensure documentation is readable and consistent by newcomers and experts alike, here are some suggestions on writing style for English:
- Use gender neutral pronouns (they/their/them) instead of he/she/his/her
- Avoid qualifiers that minimize the difficulty of a task at hand, e.g. avoid words like "easily", "simply", "just", "merely", "straightforward", etc. Readers' expertise may not match your own, and qualifying complexity may deter some readers if the task does not match their level of experience. That being said, if a particular task is difficult or complex, do mention that.
Below are some commonly used words you'll want to leverage in your documentation contributions:
- GitHub - one word, and capitalization of the 'G' and the 'H'
- MMGIS - one word, all capitalized
For language-specific guidance on code documentation, including style guides, see Google's list of language style guides for a variety of languages.
Additionally, take a look at Google's recommendations on inline code documentation for best practices.
Media, such as such as images, videos, sound files, etc., are an excellent way to explain documentation to a wider audience more easily. Include media in your contributions as often as possible.
When including media into our version-control system, it is recommended to use formats such as:
- Diagrams: Mermaid format
- Images: JPEG format
- Videos: H264 MPEG format
- Sounds: MP3 format
Answering questions is an excellent way to learn more about our project, as well as get better known in our project community.
Here are just a few ways you can help answer questions for our project:
- Answer open questions in our discussion forum
- Answer open questions mentioned in our issue tracking system
When answering questions, keep the following in mind:
- Be polite and friendly. See our Code of Conduct recommendations as you interact with others in the team.
- Repeat the specific question you are answering, followed by your suggestion.
- If suggesting code, repeat the line of code that needs to be altered, followed by your alteration
- Include any post-steps or checks to verify your answer can be reproduced
Design files can help to guide new features and new areas of expansion for our project. We welcome these kinds of contributions.
Here are just a few ways you can help provide design recommendations for our project:
- Create visual mockups or diagrams to increase usability of our project applications. This can apply to user interfaces, documentation structuring, or even code architecture diagrams.
- Conduct user research to understand user needs better. Save your findings within spreadsheets that the project team / contributors can review.
- Create art, such as logos or icons, to support the user experience for the project
Each of the above can be contributed directly to repository code, and you should use our development process to contribute your additions.
A great way to contribute towards our project goals is to socialize and encourage people to meet and learn more about each other. Consider ideas like:
- Propose workshops or meetups regarding some topic within our project
- Help point project contributors and community members to conferences and publications where they may socialize their unique innovations
- Schedule in-person or virtual happy-hours to help create a more social atmosphere within the project community
For the above ideas, use our communication channels to propose get-togethers.
MMGIS supports pluginable backend APIs and frontend Tools.
New tools are automatically found and included on start.
-
Go to
src/essence/Tools
- Create a new directory here with the name of your new tool
- Copy and paste
New Tool Template.js
into your new directory - Rename the pasted file to
[Your Tool's Name]Tool.js
- Add a
config.json
file so that MMGIS can find it. Do look at the existing tools'config.json
but here's a template:
{ "defaultIcon": "a material design icon https://pictogrammers.com/library/mdi/ identifier", "description": "A quick description of the tool's capabilities.", "descriptionFull": { "title": "A longer description of the tool's capabilities.", "example": { "A example object of the configuration variables the tool accepts": "value" } }, "hasVars": true, "name": "{toolName}", "toolbarPriority": 3, "paths": { "{toolName}Tool": "essence/Tools/{toolName}/{toolName}Tool" }, "expandable": false }
-
Restart the server with
npm start
-
Use the
/configure
page to enable the tool in your development environment
Ideally all the code for a tool will be in its [Tool's Name]Tool.js
and built off of the New Tool Template.js
.
- All tools must return an object with
make
anddestroy
functions.make
is called when the user clicks on the tool's icon whiledestroy
is called when the user clicks on any other tool's icon.
- Tools should work independently of one another.
- Tools should only change the
#tools
div or something in the viewer, map and/or globe. - Use
width
orheight
entries to set the tool div's dimensions.
- There are private repos with pluginable tools that are not visible to the public. If you would like to include your own private tool, place it in a
/src/essence/MMGIS-Private-Tools
directory.
New backends are automatically found and included on start.
- Go to
API/Backend
- Create a new directory here with the name of your new backend
- Copy and paste
setupTemplate.js
into your new directory - Rename the pasted file to
setup.js
- Edit
setup.js
based on the development guide below
- Restart the server with
npm start
All the code for a backend must stay in its API/Backend/[name]
directory.
- Backends should work independently of one another.
- Use the existing backends as a reference point.
const router = require("./routes/your_router");
Write scripts within you backend directory and import them. Most backends follow the directory structure:
- API/Backend/[name]
- models/
- routes/
- setup.js
let setup = {
//Once the app initializes
onceInit: s => {},
//Once the server starts
onceStarted: s => {},
//Once all tables sync
onceSynced: s => {},
envs: [{ name: "ENV_VAR", description: "", required: false, private: false }]
};
onceInit() is called immediately on npm start
onceStarted() is called once the http server starts up
onceSynced() is called once all table are created/has their existence verified.
The s parameter is an object containing the app and middleware. A common form to attach an API within a setup.js
is to fill onceInit() with:
onceInit: (s) => {
s.app.use(
"/API/example",
s.ensureUser(),
s.checkHeadersCodeInjection,
s.setContentType,
s.stopGuests,
importedRouter
);
};
envs
help document which environment values the backend uses and logs errors if required environment variables aren't set. Variables that end with _HOST
are for URLs and upon start up they'll be pinged and there status will be logged.
Please refer to the existing backend directories for further examples.
CONTRIBUTING.md template by NASA SLIM