-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdata.json
559 lines (558 loc) · 18.7 KB
/
data.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
[
{
"model": "Auth.User",
"pk": 1,
"fields": {
"first_name": "admin",
"email": "[email protected]",
"last_name": "admin",
"password": "pbkdf2_sha256$600000$0FjuZXUItXGWbeWFurh8u3$dQsM8ptw+Pad5B0I6cstdfDKM9g6Q2ig4CJaMRkZaVY=",
"is_superuser": true,
"is_staff": true,
"is_active": true
}
},
{
"model": "Auth.User",
"pk": 2,
"fields": {
"first_name": "test",
"email": "[email protected]",
"last_name": "user",
"password": "pbkdf2_sha256$600000$sH4aon10SebzQ0LdhwAj8T$b8UEWHglxnZYEziQMRukhf56QExfKpgH4/ecOlWE0a0=",
"is_superuser": false,
"is_staff": true,
"is_active": true
}
},
{
"model": "Auth.User",
"pk": 3,
"fields": {
"first_name": "yash",
"email": "[email protected]",
"last_name": "Sahsani",
"password": "pbkdf2_sha256$600000$sH4aon10SebzQ0LdhwAj8T$b8UEWHglxnZYEziQMRukhf56QExfKpgH4/ecOlWE0a0=",
"is_superuser": false,
"is_staff": false,
"is_active": true
}
},
{
"model": "Auth.User",
"pk": 4,
"fields": {
"first_name": "meet",
"email": "[email protected]",
"last_name": "Patel",
"password": "pbkdf2_sha256$600000$sH4aon10SebzQ0LdhwAj8T$b8UEWHglxnZYEziQMRukhf56QExfKpgH4/ecOlWE0a0=",
"is_superuser": false,
"is_staff": false,
"is_active": true
}
},
{
"model": "userprofile.userprofile",
"pk": 1,
"fields": {
"user": 1,
"date_of_birth": "1990-01-01",
"address_line_1": null,
"address_line_2": "-",
"city": null,
"state": null,
"country": null,
"zip_code": null,
"phone_number": null,
"profile_pic": "default.jpg",
"location": null
}
},
{
"model": "userprofile.userprofile",
"pk": 2,
"fields": {
"user": 2,
"date_of_birth": "1990-01-01",
"address_line_1": null,
"address_line_2": "-",
"city": null,
"state": null,
"country": null,
"zip_code": null,
"phone_number": null,
"profile_pic": "default.jpg",
"location": null
}
},
{
"model": "userprofile.userprofile",
"pk": 3,
"fields": {
"user": 3,
"date_of_birth": "2000-07-01",
"address_line_1": "1132 Windsor Ave",
"address_line_2": "-",
"city": "Windsor",
"state": "Ontario",
"country": "Canada",
"zip_code": "N9A1K4",
"phone_number": "1234567890",
"profile_pic": "profile_pics/Screenshot_2024-05-17_at_7.37.46PM.png",
"location": "None"
}
},
{
"model": "userprofile.userprofile",
"pk": 4,
"fields": {
"user": 4,
"date_of_birth": "1990-01-01",
"address_line_1": null,
"address_line_2": "-",
"city": null,
"state": null,
"country": null,
"zip_code": null,
"phone_number": null,
"profile_pic": "default.jpg",
"location": null
}
},
{
"model": "Shop.Product",
"pk": 1,
"fields": {
"name": "Anthurium (Pink) - Plant",
"description": "Anthurium is a genus of about 1,000 species of flowering plants, native to the Americas. These plants are known for their bright flowers and can be used as a decorative indoor plant.",
"price": 29.00,
"discount_price": 19.00,
"image": "products/anthurium_pink.jpg",
"in_stock": true,
"rating": 4.0,
"created_at": "2024-07-29T00:00:00Z",
"updated_at": "2024-07-29T00:00:00Z",
"expiry": 330,
"expiry_date": "2025-08-15T00:00:00Z"
}
},
{
"model": "Shop.Product",
"pk": 2,
"fields": {
"name": "Areca Palm (Small) - Plant",
"description": "Areca Palm is a popular houseplant and also known as Butterfly Palm. It is one of the most widely used palms for bright interiors. What makes it special: NASA recommended an air purifier plant. Popular indoor house plant. Best plant for AC rooms, office desk.",
"price": 50.00,
"discount_price": 30.00,
"image": "products/areca_palm_small.webp",
"in_stock": true,
"rating": 5.0,
"created_at": "2024-07-29T00:00:00Z",
"updated_at": "2024-07-29T00:00:00Z",
"expiry_date": "2025-08-15T00:00:00Z",
"expiry": 430,
"user_id": "2"
}
},
{
"model": "Shop.Product",
"pk": 3,
"fields": {
"name": "Top 5 air purifier and oxygen enriching plant pack",
"description": "This plant pack includes the top 5 plants recommended by NASA for air purification and oxygen enrichment. Perfect for any home or office.",
"price": 80.00,
"discount_price": 70.00,
"image": "products/air_purifier_pack.jpg",
"in_stock": true,
"rating": 3.0,
"created_at": "2024-07-29T00:00:00Z",
"updated_at": "2024-07-29T00:00:00Z",
"expiry_date": "2025-08-15T00:00:00Z",
"expiry": 370,
"user_id": "2"
}
},
{
"model": "Shop.Product",
"pk": 4,
"fields": {
"name": "Sansevieria trifasciata Hahnii, Snake Plant - Plant",
"description": "Sansevieria trifasciata Hahnii is a popular houseplant with dark green leaves marked with a pattern of wavy cross stripes in a lighter color. What makes it special: NASA recommended an air purifier plant. Best plant for AC rooms, office desk. Zero maintenance plant. Best indoor plant for low light condition.",
"price": 26.00,
"discount_price": 16.00,
"image": "products/snake_plant.jpg",
"in_stock": true,
"rating": 5.0,
"created_at": "2024-07-29T00:00:00Z",
"updated_at": "2024-07-29T00:00:00Z",
"expiry_date": "2025-08-15T00:00:00Z",
"expiry": 380,
"user_id": "2"
}
},
{
"model": "Shop.Product",
"pk": 5,
"fields": {
"name": "Aptenia, Heartleaf Ice - Succulent Plant",
"description": "Aptenia is a genus of succulent plants with heart-shaped leaves and bright flowers. These plants are perfect for indoor decoration and require minimal care.",
"price": 30.00,
"discount_price": 20.00,
"image": "products/aptenia_heartleaf.jpg",
"in_stock": true,
"rating": 5.0,
"created_at": "2024-07-29T00:00:00Z",
"updated_at": "2024-07-29T00:00:00Z",
"expiry_date": "2025-08-15T00:00:00Z",
"expiry": 310,
"user_id": "2"
}
},
{
"model": "Shop.Product",
"pk": 6,
"fields": {
"name": "Rose (Red) - Plant",
"description": "Red Roses are a symbol of love and beauty. This plant can be grown indoors and is known for its vibrant red flowers.",
"price": 21.00,
"discount_price": 11.00,
"image": "products/rose_red.webp",
"in_stock": true,
"rating": 2.0,
"created_at": "2024-07-29T00:00:00Z",
"updated_at": "2024-07-29T00:00:00Z",
"expiry_date": "2025-08-15T00:00:00Z",
"expiry": 390,
"user_id": "2"
}
},
{
"model": "Shop.Product",
"pk": 7,
"fields": {
"name": "Hydrangea macrophylla (Any Color) - Plant",
"description": "Hydrangea macrophylla is known for its large and colorful flower heads. These plants are perfect for indoor decoration and can come in various colors.",
"price": 17.00,
"discount_price": 14.00,
"image": "products/hydrangea_macrophylla.jpg",
"in_stock": true,
"rating": 3.0,
"created_at": "2024-07-29T00:00:00Z",
"updated_at": "2024-07-29T00:00:00Z",
"expiry_date": "2025-08-15T00:00:00Z",
"expiry": 430,
"user_id": "2"
}
},
{
"model": "Shop.Product",
"pk": 8,
"fields": {
"name": "Set of 2 Bonsai Looking Grafted Adeniums",
"description": "This set includes two Bonsai looking Adenium plants. These plants are known for their unique appearance and are perfect for indoor decoration.",
"price": 26.00,
"discount_price": 22.00,
"image": "products/bonsai_adenium.jpg",
"in_stock": true,
"rating": 4.0,
"created_at": "2024-07-29T00:00:00Z",
"updated_at": "2024-07-29T00:00:00Z",
"expiry_date": "2025-08-15T00:00:00Z",
"expiry": 334,
"user_id": "2"
}
}, {
"model": "Shop.product",
"pk": 13,
"fields": {
"name": "Flamingo Flower",
"description": "The Flamingo Flower Plant, known scientifically as Anthurium andraeanum, is a striking and vibrant addition to any indoor garden. Belonging to the Araceae family, this tropical plant originates from the rainforests of Central and South America. It features glossy, heart-shaped leaves and distinctive, long-lasting blooms in various colors, including red, pink, white, and purple. For instance, the Pink Flamingo Flower is a popular variety, adding a touch of elegance and color to any setting.\r\n\r\nFlamingo plants thrive in hardy zones 10-11, making them well-suited for warm, humid environments. They are relatively easy to care for and prefer bright, indirect light and consistent moisture. The Flamingo Lily is related to the Peace Lily and shares similar care needs.\r\n\r\nIn Feng Shui, the Flamingo Flower symbolizes hospitality and happiness, making it a popular choice for homes and as a gift. While not as toxic as other houseplants, it can still harm pets’ well-being if ingested.",
"price": "50.00",
"discount_price": "43.00",
"image": "products/b2df66a3fbdb--PDP-6in-Flamingo-Flower-White-Ceramic-01.webp",
"in_stock": true,
"rating": 5,
"created_at": "2024-07-22T21:33:38.187Z",
"updated_at": "2024-07-22T21:34:18.497Z",
"user_id": "3",
"expiry": 372,
"expiry_date": "2024-07-23T21:33:38.187Z"
}
},
{
"model": "GreenCartEcom.offer",
"pk": 1,
"fields" : {
"title": "Indoor Plants",
"image": "offers_poster/indoor.jpg"
}
},
{
"model": "GreenCartEcom.offer",
"pk": 2,
"fields" : {
"title": "Outdoor Plants",
"image": "offers_poster/Outdoor_plants.jpg"
}
},
{
"model": "GreenCartEcom.offer",
"pk": 3,
"fields" : {
"title": "Gardening Toolkit",
"image": "offers_poster/toolkit.webp"
}
},
{
"model": "GreenCartEcom.offer",
"pk": 4,
"fields" : {
"title": "Pot sets",
"image": "offers_poster/pot_sets.jpg"
}
},
{
"model": "GreenCartEcom.offer",
"pk": 5,
"fields" : {
"title": "Art and crafts for Decoration",
"image": "offers_poster/arts.webp"
}
},
{
"model": "Support.faqCategory",
"pk": 1,
"fields": {
"name": "Plant Care"
}
},
{
"model": "Support.faqCategory",
"pk": 2,
"fields": {
"name": "Gardening Tips"
}
},
{
"model": "Support.faqCategory",
"pk": 3,
"fields": {
"name": "Pet-Friendly Plants"
}
},
{
"model": "Support.faqCategory",
"pk": 4,
"fields": {
"name": "Indoor Plants"
}
},
{
"model": "Support.faqCategory",
"pk": 5,
"fields": {
"name": "Vegetable Gardening"
}
},
{
"model": "Support.faqCategory",
"pk": 6,
"fields": {
"name": "Pest Control"
}
},
{
"model": "Support.faqCategory",
"pk": 7,
"fields": {
"name": "Indoor Gardening"
}
},
{
"model": "Support.faqCategory",
"pk": 8,
"fields": {
"name": "Outdoor Gardening"
}
},
{
"model": "Support.faq",
"pk": 1,
"fields": {
"question": "What are the best plants for low light conditions?",
"answer": "Plants like snake plants, pothos, and peace lilies thrive in low light.",
"category": 1
}
},
{
"model": "Support.faq",
"pk": 2,
"fields": {
"question": "How often should I water my succulents?",
"answer": "Succulents prefer dry conditions; water them every 2-3 weeks, depending on the climate.",
"category": 2
}
},
{
"model": "Support.faq",
"pk": 3,
"fields": {
"question": "Which plants are pet-friendly?",
"answer": "Some pet-friendly plants include spider plants, Boston ferns, and African violets.",
"category": 3
}
},
{
"model": "Support.faq",
"pk": 4,
"fields": {
"question": "How can I prevent overwatering my houseplants?",
"answer": "Ensure your pots have drainage holes and check soil moisture before watering.",
"category": 1
}
},
{
"model": "Support.faq",
"pk": 5,
"fields": {
"question": "What are air-purifying plants?",
"answer": "Plants like peace lilies, spider plants, and snake plants help improve indoor air quality.",
"category": 4
}
},
{
"model": "Support.faq",
"pk": 6,
"fields": {
"question": "How do I propagate succulents?",
"answer": "Succulents can be propagated from leaf or stem cuttings placed in well-draining soil.",
"category": 2
}
},
{
"model": "Support.faq",
"pk": 7,
"fields": {
"question": "What is the best fertilizer for indoor plants?",
"answer": "Use a balanced liquid fertilizer diluted to half-strength during the growing season.",
"category": 1
}
},
{
"model": "Support.faq",
"pk": 8,
"fields": {
"question": "How much sunlight do tomato plants need?",
"answer": "Tomato plants require at least 6-8 hours of direct sunlight daily for optimal growth.",
"category": 5
}
},
{
"model": "Support.faq",
"pk": 9,
"fields": {
"question": "What causes yellowing leaves on houseplants?",
"answer": "Yellow leaves can result from overwatering, nutrient deficiencies, or insufficient light.",
"category": 1
}
},
{
"model": "Support.faq",
"pk": 10,
"fields": {
"question": "How can I control pests on my plants naturally?",
"answer": "Use neem oil, insecticidal soap, or introduce beneficial insects like ladybugs.",
"category": 6
}
},
{
"model": "Support.faq",
"pk": 11,
"fields": {
"question": "What is the best way to repot a plant?",
"answer": "Choose a pot one size larger, gently loosen roots, and add fresh potting mix.",
"category": 1
}
},
{
"model": "Support.faq",
"pk": 12,
"fields": {
"question": "Which herbs can I grow indoors year-round?",
"answer": "Herbs like basil, mint, parsley, and chives thrive indoors with adequate light.",
"category": 7
}
},
{
"model": "Support.faq",
"pk": 13,
"fields": {
"question": "How do I prevent fungus gnats in houseplants?",
"answer": "Allow soil to dry between waterings and use sticky traps to catch adult gnats.",
"category": 6
}
},
{
"model": "Support.faq",
"pk": 14,
"fields": {
"question": "What is the ideal humidity level for tropical houseplants?",
"answer": "Tropical plants prefer humidity levels of 50% or higher; misting can help maintain humidity.",
"category": 4
}
},
{
"model": "Support.faq",
"pk": 15,
"fields": {
"question": "Can I grow vegetables indoors?",
"answer": "Yes, vegetables like lettuce, cherry tomatoes, and peppers can be grown indoors with sufficient light.",
"category": 7
}
},
{
"model": "Support.faq",
"pk": 16,
"fields": {
"question": "How do I revive a wilting plant?",
"answer": "Check soil moisture and water as needed; trim any damaged leaves and provide appropriate light.",
"category": 1
}
},
{
"model": "Support.faq",
"pk": 17,
"fields": {
"question": "What are the benefits of using mulch in garden beds?",
"answer": "Mulch helps retain soil moisture, suppress weeds, and regulate soil temperature.",
"category": 2
}
},
{
"model": "Support.faq",
"pk": 18,
"fields": {
"question": "How can I create a herb garden in small spaces?",
"answer": "Use vertical planters, hanging baskets, or window boxes for compact herb gardens.",
"category": 7
}
},
{
"model": "Support.faq",
"pk": 19,
"fields": {
"question": "How do I prevent root rot in houseplants?",
"answer": "Ensure pots have drainage holes, use well-draining soil, and avoid overwatering.",
"category": 1
}
},
{
"model": "Support.faq",
"pk": 20,
"fields": {
"question": "Which plants are best suited for a balcony garden?",
"answer": "Herbs, succulents, and compact vegetables like cherry tomatoes and peppers thrive in balcony gardens.",
"category": 8
}
}
]