To add a product, gather the following information:
- Name of Product (
name) - Launch Year (
dateOpen) - Discontinued Year (
dateClose) - Description (
description) - Country (
country)
If you are already familiar with git, follow these steps:
- If you haven't already, start by forking this repository.
- Create a new branch in your fork. Name it using the product you want to add
- Switch to that branch (should happen automatically if you've just created it) and open the
deathnote.jsonfile - Use the information gathered above to add a JSON entry in the following format:
{
"dateClose": "YYYY",
"dateOpen": "YYYY",
"description": "[Product Name] was a single sentence overview of the product or service.",
"name": "[Product Name]",
"country": "Country",
}
- Finally, create a Pull Request (PR) using the newly created branch (Important: DON'T use the
masterbranch for the PR). Submit it with the necessary explanations.