├── README.md └── db.json /README.md: -------------------------------------------------------------------------------- 1 | # lyfethree-db 2 | lyfethree json database server 3 | -------------------------------------------------------------------------------- /db.json: -------------------------------------------------------------------------------- 1 | { 2 | "products": [ 3 | { 4 | "id": "1", 5 | "name": "Baji® Blue Lemonade", 6 | "details": "We've said it before and we will say it again, nothing beats the real thing. With years of R&D and REAL CHIPS AHOY!® cookie pieces in every scoop, this flavor is second to none.", 7 | "price": 4.99, 8 | "image": "https://lh5.googleusercontent.com/RwYco_vunuhzaAV86Wo6RG5P19ZPcP_wzIhm-poI376ENXMjRyyMDlNyzp1zurEZrBg=w2400" 9 | }, 10 | { 11 | "id": "2", 12 | "name": "Baji® Bomber", 13 | "details": "GHOST Vegan Protein combines a premium, fully disclosed vegan protein blend with industry-leading flavors...what more could you ask for?", 14 | "price": 4.99, 15 | "image": "https://lh6.googleusercontent.com/l28WNEsnGyPVTkzZI84-djfiNx3FSqCfKkc9hsVNrfjJ1hQxAb6P6nA2ynMeAA7D2lY=w2400" 16 | }, 17 | { 18 | "id": "3", 19 | "name": "Baji® Sourz Special", 20 | "details": "We've said it before and we will say it again, nothing beats the real thing. With years of R&D and REAL CHIPS AHOY!® cookie pieces in every scoop, this flavor is second to none.", 21 | "price": 4.99, 22 | "image": "https://lh6.googleusercontent.com/Oh_7u6WDn10rv9EuFLYgT6HaUtwNd29cMaEx09k3tkPnf-cL8ejiSe6W_Mgt6eSlN6w=w2400" 23 | }, 24 | { 25 | "id": "4", 26 | "name": "Baji® Jungle Juice", 27 | "details": "INTERIOR POCKETS WITH SOFT VELCRO ADJUSTABLE WAIST LIGHTWEIGHT NYLON CIRE 95% NYLON 5% SPANDEX PRIMALOFT® POLYESTER FILL WATER RESISTANT MACHINE WASH COLD TUMBLE DRY LOW IMPORTED", 28 | "price": 4.99, 29 | "image": "https://lh6.googleusercontent.com/yxmuUKlsLZAhmy_7AZwnB96jrXLnUN6yyKhZyH9ww9NlwJjDnEJL3KvhwIIdpnUjKFE=w2400" 30 | }, 31 | { 32 | "id": "5", 33 | "name": "Baji® Lemon Chill", 34 | "details": "INTERIOR POCKETS WITH SOFT VELCRO ADJUSTABLE WAIST LIGHTWEIGHT NYLON CIRE 95% NYLON 5% SPANDEX PRIMALOFT® POLYESTER FILL WATER RESISTANT MACHINE WASH COLD TUMBLE DRY LOW IMPORTED", 35 | "price": 4.99, 36 | "image": "https://lh4.googleusercontent.com/LbXhLM2lQVm5qcDG5ZySzqCVd7pSZ7ENyeyS6HH_9UUQJOJz2pPDcYs5pqHvN6xoNqM=w2400" 37 | }, 38 | { 39 | "id": "6", 40 | "name": "Baji® Twisted", 41 | "details": "ADJUSTABLE BUNGEE AT HOOD, WRIST AND HEM SIZE POCKETS & FRONT POCKET 100% NYLON PRIMALOFT® POLYESTER FILL WATER RESISTANT SPOT CLEAN IMPORTED", 42 | "price": 4.99, 43 | "image": "https://lh5.googleusercontent.com/uyn1WfOb9eroGzqD7qp9iGLVIJOw3j9P-yhfPCQDdPaukykXc9Q_7ppGBLyS7Nvxu-Y=w2400" 44 | } 45 | ], 46 | "profile": { 47 | "name": "aeeux" 48 | } 49 | } 50 | --------------------------------------------------------------------------------