This repository serves as the backend of CostumeDatabse.com. If you have an idea, feel free to contribute!
The Costume Object has fields for name, origin, imageUrl, fandomLink, description, theme, size, and characters.
Example:
{
    "name": "Ross and Rachel",
    "origin": "Friends",
    "imageUrl": "https://static.wikia.nocookie.net/friends/images/c/c9/Ross_and_Rachel_-_Final_Kiss_-_10x18.png",
    "fandomLink": "https://friends.fandom.com/wiki/Ross_and_Rachel",
    "description": "On again off again Rachel and Ross are one of the central couples on Friends. Were they on a break? It's up to you!",
    "theme": ["sitcom", "romantic"],
    "size": 2,
    "characters": [
      {
        "hair": "brown",
        "gender": "male"
      },
      {
        "hair": "brown",
        "gender": "female"
      }
    ]
  }name: the name of the costumeorigin: where the costume is from (often, the name of the show or movie)imageUrl(optional): an image of the charactersfandomLink(optional): a link to a fandom page where people can learn moredescription: a brief description of the characterstheme: a list of themes the costume may fall undersize: how many people is the costume for?characters: a list of the characters, represented by hair color/gender
Please read the terms of use on CostumeDatabase.com. Thanks for helping us out :)
More information about contributing to Github
- Fork the project repository
 - Clone your fork
 - Add this repo as an upstream 
git remote add upstream https://github.com/reaganhenke/costume-db-backend - Pull the latest 
git pull upstream main - Create a new branch
 - Commit your changes and push them to your fork
 - On Github, open a Pull Request against the base-repository
 
We may close or request changes on pull requests that don't meet the requirements. Thanks for helping us out!