Clean code

This commit is contained in:
Urtzi Alfaro
2025-09-29 19:18:45 +02:00
parent 2712a60a2a
commit d1c83dce74
6 changed files with 0 additions and 308 deletions

View File

@@ -1,27 +0,0 @@
#!/bin/bash
# Script to seed the orders database with test data
set -e
echo "🌱 Seeding Orders Database with Test Data"
echo "========================================="
# Change to the orders service directory
cd services/orders
# Make sure we're in a virtual environment or have the dependencies
echo "📦 Setting up environment..."
# Run the seeding script
echo "🚀 Running seeding script..."
python scripts/seed_test_data.py
echo "✅ Database seeding completed!"
echo ""
echo "🎯 Test data created:"
echo " - 6 customers (including VIP, wholesale, and inactive)"
echo " - 25 orders in various statuses"
echo " - Order items with different products"
echo " - Order status history"
echo ""
echo "📋 You can now test the frontend with real data!"