mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 21:55:09 +00:00
25 lines
1.1 KiB
Bash
Executable file
25 lines
1.1 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
load_easy_docker_wizard_common_modules() {
|
|
local wizard_dir=""
|
|
wizard_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
# shellcheck source=scripts/easy-docker/lib/app/wizard/common/constants.sh
|
|
source "${wizard_dir}/common/constants.sh"
|
|
# shellcheck source=scripts/easy-docker/lib/app/wizard/common/core.sh
|
|
source "${wizard_dir}/common/core.sh"
|
|
# shellcheck source=scripts/easy-docker/lib/app/wizard/common/helpers.sh
|
|
source "${wizard_dir}/common/helpers.sh"
|
|
# shellcheck source=scripts/easy-docker/lib/app/wizard/common/compose.sh
|
|
source "${wizard_dir}/common/compose.sh"
|
|
# shellcheck source=scripts/easy-docker/lib/app/wizard/common/frappe.sh
|
|
source "${wizard_dir}/common/frappe.sh"
|
|
# shellcheck source=scripts/easy-docker/lib/app/wizard/common/apps.sh
|
|
source "${wizard_dir}/common/apps.sh"
|
|
# shellcheck source=scripts/easy-docker/lib/app/wizard/common/site.sh
|
|
source "${wizard_dir}/common/site.sh"
|
|
# shellcheck source=scripts/easy-docker/lib/app/wizard/common/ux.sh
|
|
source "${wizard_dir}/common/ux.sh"
|
|
}
|
|
|
|
load_easy_docker_wizard_common_modules
|