delindell / houseplant-topia

0 stars 0 forks source link

Seed Data #4

Closed delindell closed 4 years ago

delindell commented 4 years ago

User Story

As a developer I need seed data for all my collections to test my app

AC

WHEN the database collections are viewed THEN there should be 3 collections of data: users, plants, rooms AND these should be in correct .json language

{
  "plant1": {
    "type": "Pothos",
    "nickname": "Richard",
    "imgUrl": "imgurr.com",
    "resource": "wikipedia.org/pothos",
    "health": "Healthy",
    "howOftenNeedsWatering": 5,
    "lastWatered": 06122020,
    "roomId": "room5",
    "uid": "PlANt23Ue"
  }
}
{
  "room1": {
    "name": "Office",
    "numOfWindows": 2,
    "sunDuration": 5,
    "sunDirection": "South",
    "sunIntensity": "Low",
    "uid": "Y3udWi93"
  }
}
delindell commented 4 years ago

Add watering table collection