-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
27 lines (23 loc) · 682 Bytes
/
setup.sh
File metadata and controls
27 lines (23 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/bash
# Document Analyzer - Main Setup Script (Linux/Mac)
# This script calls the full setup automation
echo "========================================"
echo "Document Analyzer - Setup"
echo "========================================"
echo ""
cd "$(dirname "$0")/scripts/setup"
# Run the auto setup script
if [ -f "setup_auto.sh" ]; then
chmod +x setup_auto.sh
./setup_auto.sh
elif [ -f "quick_setup.sh" ]; then
chmod +x quick_setup.sh
./quick_setup.sh
else
echo "Error: Setup script not found in scripts/setup/"
exit 1
fi
echo ""
echo "========================================"
echo "Setup complete!"
echo "========================================"