Includes: - Odoo 19 framework (odoo/) - 27 custom EnCoach addons (new_project/custom_addons/) - encoach_core, encoach_api, encoach_lms_api, encoach_adaptive_api - encoach_exam, encoach_taxonomy, encoach_adaptive, encoach_assignment - encoach_ai, encoach_ai_grading, encoach_ai_generation, encoach_ai_media - encoach_courseware, encoach_communication, encoach_subscription - encoach_notification, encoach_approval, encoach_branding - encoach_classroom, encoach_registration, encoach_stats - encoach_faq, encoach_ticket, encoach_training, encoach_resources - encoach_adaptive_ai, encoach_sis - 21 OpenEduCat Enterprise modules (new_project/enterprise-19/) - 14 OpenEduCat Community modules (new_project/openeducat_erp-19.0/) - Configuration: odoo.conf, requirements.txt, scripts - 200+ REST API endpoints with JWT authentication - SRS and test documentation Made-with: Cursor
28 lines
762 B
Bash
Executable File
28 lines
762 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Install Debian packages needed to run Odoo.
|
|
|
|
|
|
if [ "$1" = "-l" -o "$1" = "--list" ]; then
|
|
cmd="echo"
|
|
else
|
|
cmd="apt-get install -y --no-install-recommends"
|
|
if [ "$(id -u)" -ne "0" ]; then
|
|
echo "\033[0;31mThis script must be run as root to install dependencies, starting a dry run.\033[0m" >&2
|
|
cmd="$cmd -s"
|
|
else
|
|
apt-get update
|
|
fi
|
|
if [ "$1" = "-q" -o "$1" = "--quiet" ]; then
|
|
cmd="$cmd -qq"
|
|
fi
|
|
fi
|
|
|
|
script_path=$(realpath "$0")
|
|
script_dir=$(dirname "$script_path")
|
|
control_path=$(realpath "$script_dir/../debian/control")
|
|
|
|
sed -n '/^Depends:/,/^[A-Z]/p' "$control_path" \
|
|
| awk '/^ [a-z]/ { gsub(/,/,"") ; gsub(" ", "") ; print $NF }' | sort -u \
|
|
| DEBIAN_FRONTEND=noninteractive xargs $cmd
|