quantumtaskai-caprover/build.sh
thecyberlearn b0e8c917ef Initial clean CapRover deployment - no secrets
Complete Django AI agent marketplace with security optimizations
and clean deployment documentation without any API keys or secrets.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-04 10:50:55 +05:30

12 lines
270 B
Bash
Executable File

#!/usr/bin/env bash
# Build script for Render deployment
set -o errexit # exit on error
echo "Installing dependencies..."
pip install -r requirements.txt
echo "Collecting static files..."
python manage.py collectstatic --noinput
echo "Build completed successfully!"