-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
136 lines (134 loc) · 5.04 KB
/
db.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"plants_water_frequencies": [
{"key": "day", "title": "Daily"},
{"key": "week", "title": "Weekly"}
],
"plants_environments": [
{"key": "living_room", "title": "Living room"},
{"key": "bedroom", "title": "Bedroom"},
{"key": "kitchen", "title": "Kitchen"},
{"key": "bathroom", "title": "Bathroom"}
],
"plants": [
{
"id": 1,
"name": "Dumbcane",
"about": "It is a tropical species that grows quickly and is easy to handle.",
"water_tips": "Keep the soil always moist without soaking. Water twice a week.",
"photo": "https://storage.googleapis.com/golden-wind/nextlevelweek/05-plantmanager/1.svg",
"environments": ["living_room", "kitchen"],
"frequency": {
"times": 2,
"repeat_every": "week"
}
},
{
"id": 2,
"name": "Zanzibar Gem",
"about": "Despite blooming in the spring, it looks beautiful and green all year round.",
"water_tips": "Use pots with holes and stones in the bottom to facilitate drainage. Water once a day.",
"photo": "https://storage.googleapis.com/golden-wind/nextlevelweek/05-plantmanager/2.svg",
"environments": ["living_room", "bedroom"],
"frequency": {
"times": 1,
"repeat_every": "day"
}
},
{
"id": 3,
"name": "Radiator plants",
"about": "It adapts so much to the sun and shade, but prefers to stay in a cool corner, without direct sun.",
"water_tips": "On the hottest days, sprinkle water on the leaves. Water 3 times a week.",
"photo": "https://storage.googleapis.com/golden-wind/nextlevelweek/05-plantmanager/3.svg",
"environments": ["bedroom"],
"frequency": {
"times": 3,
"repeat_every": "week"
}
},
{
"id": 4,
"name": "Philodendron",
"about": "Medium sized that adapts to different regions, as well as being very easy to cultivate. It conquers more and more people.",
"water_tips": "Keep the soil always moist without soaking. Water twice a week.",
"photo": "https://storage.googleapis.com/golden-wind/nextlevelweek/05-plantmanager/4.svg",
"environments": ["bedroom", "living_room"],
"frequency": {
"times": 2,
"repeat_every": "week"
}
},
{
"id": 5,
"name": "Dracaena trifasciata",
"about": "The aroma reduces anxiety levels and its smell helps with sleep quality and productivity during the day.",
"water_tips": "Water the soil around it. Water it once a day.",
"photo": "https://storage.googleapis.com/golden-wind/nextlevelweek/05-plantmanager/5.svg",
"environments": ["bedroom", "living_room"],
"frequency": {
"times": 1,
"repeat_every": "day"
}
},
{
"id": 6,
"name": "Yucca",
"about": "They are recommended because they are easy to maintain and care for. You put them in small pots, or even in cups.",
"water_tips": "Thanks to the water reserve of these greenbacks, it is always better to water a little. Water once a week.",
"photo": "https://storage.googleapis.com/golden-wind/nextlevelweek/05-plantmanager/6.svg",
"environments": ["kitchen", "bedroom"],
"frequency": {
"times": 1,
"repeat_every": "week"
}
},
{
"id": 7,
"name": "Fruit tree",
"about": "They require a few hours of sunshine a day, so keep them close to windows.",
"water_tips": "Always water the soil and not the leaves. Water 3 times a week.",
"photo": "https://storage.googleapis.com/golden-wind/nextlevelweek/05-plantmanager/7.svg",
"environments": ["kitchen", "living_room"],
"frequency": {
"times": 3,
"repeat_every": "week"
}
},
{
"id": 8,
"name": "Orchids",
"about": "Brings a sense of tranquility and peace to the environment. Requires little maintenance and is great for those with little space.",
"water_tips": "Water moderately. Require 4 times a week.",
"photo": "https://storage.googleapis.com/golden-wind/nextlevelweek/05-plantmanager/8.svg",
"environments": ["bathroom"],
"frequency": {
"times": 4,
"repeat_every": "week"
}
},
{
"id": 9,
"name": "Violet",
"about": "With delicate flowers. They are great suggestions for decorating the bathroom.",
"water_tips": "No watering the flowers and leaves. Water the soil twice a week.",
"photo": "https://storage.googleapis.com/golden-wind/nextlevelweek/05-plantmanager/3.svg",
"environments": ["bathroom"],
"frequency": {
"times": 2,
"repeat_every": "week"
}
},
{
"id": 10,
"name": "French hydrangea",
"about": "The hydrangea is a rustic plant and adapts to different types of soils.",
"water_tips": "Keep the soil always moist without soaking. Water once a day.",
"photo": "https://storage.googleapis.com/golden-wind/nextlevelweek/05-plantmanager/2.svg",
"environments": ["bathroom"],
"frequency": {
"times": 1,
"repeat_every": "day"
}
}
]
}