mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 13:55:08 +00:00
15 lines
515 B
Bash
Executable file
15 lines
515 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
load_easy_docker_site_modules() {
|
|
local site_dir=""
|
|
site_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/site"
|
|
|
|
# shellcheck source=scripts/easy-docker/lib/app/wizard/common/site/metadata.sh
|
|
source "${site_dir}/metadata.sh"
|
|
# shellcheck source=scripts/easy-docker/lib/app/wizard/common/site/bootstrap.sh
|
|
source "${site_dir}/bootstrap.sh"
|
|
# shellcheck source=scripts/easy-docker/lib/app/wizard/common/site/apps.sh
|
|
source "${site_dir}/apps.sh"
|
|
}
|
|
|
|
load_easy_docker_site_modules
|