mirror of
https://github.com/thecyberlearn/quantumtaskai-caprover.git
synced 2026-08-18 10:12:57 +00:00
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>
12 lines
270 B
Bash
Executable File
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!" |