mirror of
https://github.com/thecyberlearn/quantumtaskai-caprover.git
synced 2026-08-18 12:32:56 +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>
26 lines
761 B
Bash
Executable File
26 lines
761 B
Bash
Executable File
#!/bin/bash
|
|
# Manual trigger for documentation updates
|
|
|
|
PROJECT_ROOT=$(git rev-parse --show-toplevel)
|
|
SCRIPTS_DIR="$PROJECT_ROOT/scripts"
|
|
AUTO_UPDATE_SCRIPT="$SCRIPTS_DIR/auto_update_docs.py"
|
|
|
|
echo "Manually triggering documentation update..."
|
|
|
|
if [ -f "$AUTO_UPDATE_SCRIPT" ]; then
|
|
python3 "$AUTO_UPDATE_SCRIPT" "$PROJECT_ROOT"
|
|
|
|
if [ -f "$PROJECT_ROOT/docs_update_summary.txt" ]; then
|
|
echo ""
|
|
echo "Documentation update completed!"
|
|
echo "Summary saved to: docs_update_summary.txt"
|
|
echo ""
|
|
echo "To commit the updates:"
|
|
echo " git add ."
|
|
echo " git commit -m '📚 Manual documentation update'"
|
|
fi
|
|
else
|
|
echo "Error: Auto-update script not found at $AUTO_UPDATE_SCRIPT"
|
|
exit 1
|
|
fi
|