#!/bin/bash

# Mini Production Setup Script
echo "🚀 Starting production setup..."

# Install plotly
echo "📦 Installing plotly..."
pip install plotly

# Run migrations
echo "🔄 Running migrations..."
python manage.py makemigrations
python manage.py migrate

# Collect static files
echo "📁 Collecting static files..."
python manage.py collectstatic --noinput

echo "✅ Setup complete!"