Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions pet-nutrition-service/db-seed.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,21 @@ module.exports = function(){
.catch(err => logger.error('error dropping collection:', err));

NutritionFact.insertMany([
// Original pet types
{ pet_type: 'cat', facts: 'High-protein, grain-free dry or wet food with real meat as the main ingredient', products: 'PurrfectChoice Premium Feline, WhiskerWell Grain-Free Delight, MeowMaster Senior Formula' },
{ pet_type: 'dog', facts: 'Balanced dog food with quality proteins, fats, and carbohydrates', products: 'BarkBite Complete Nutrition, TailWagger Performance Plus, PawsitiveCare Sensitive Blend' },
{ pet_type: 'lizard', facts: 'Insects, leafy greens, and calcium supplements', products: 'ScaleStrong Calcium Boost, CricketCrunch Live Supply, ReptileVitality D3 Formula' },
{ pet_type: 'snake', facts: 'Whole prey (mice/rats) based on size', products: 'SlitherSnack Frozen Mice, CoilCuisine Feeder Rats, SerpentSupreme Multivitamin' },
{ pet_type: 'bird', facts: 'High-quality seeds, pellets, and fresh fruits/veggies', products: 'FeatherFeast Premium Pellets, WingWellness Seed Mix, BeakBoost Cuttlebone Calcium' },
{ pet_type: 'hamster', facts: 'Pellets, grains, fresh vegetables, and occasional fruits', products: 'HamsterHaven Complete Pellets, CheekPouch Gourmet Mix, WhiskerWonder Vitamin Drops' }
{ pet_type: 'hamster', facts: 'Pellets, grains, fresh vegetables, and occasional fruits', products: 'HamsterHaven Complete Pellets, CheekPouch Gourmet Mix, WhiskerWonder Vitamin Drops' },

// Missing pet types causing 404 errors
{ pet_type: 'puppy', facts: 'High-quality puppy food with DHA for brain development, smaller kibble size', products: 'PuppyPower Growth Formula, SmartStart Puppy Nutrition, GrowStrong Puppy Complete' },
{ pet_type: 'llama', facts: 'Grass hay, pasture grazing, mineral supplements, and limited grain', products: 'LlamaLife Hay Pellets, AndeanGraze Mineral Mix, CamelCare Complete Nutrition' },
{ pet_type: 'rabbit', facts: 'Timothy hay, high-fiber pellets, leafy greens, and limited fruits', products: 'BunnyBest Timothy Pellets, HopHappy Hay Mix, CarrotCrunch Vitamin Treats' },
{ pet_type: 'toucan', facts: 'Low-iron fruit diet, specialized pellets, and occasional insects', products: 'TropicalBeak Fruit Pellets, RainforestNutrition Low-Iron Formula, ExoticBird Complete' },
{ pet_type: 'flying squirrel', facts: 'Insects, nuts, fruits, and specialized glider diet', products: 'GliderGourmet Complete Diet, NutriGlide Protein Mix, SugarFree Glider Treats' }
])
.then(() => logger.info('collection populated'))
.catch(err => logger.error('error populating collection:', err));
};
};