mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-10 15:20:55 +00:00
12eb5c92e4
- shellchecke and shfmt checked and formatted - indentation 2 spaces - redirect errors to stderr - short if where possible - add function string to clarify visuaally identify its a funtion - make [ ... ] to [[ ... ]] - use == for comparision - use cat based notes - remove unecessary spaces - double quotes where needed
44 lines
1.4 KiB
Bash
Executable File
44 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
APP_NAME=${1}
|
|
APP_REPO=${2}
|
|
APP_BRANCH=${3}
|
|
FRAPPE_BRANCH=${4}
|
|
|
|
[ "${APP_BRANCH}" ] && BRANCH="-b ${APP_BRANCH}"
|
|
|
|
mkdir -p /home/frappe/frappe-bench/sites/assets
|
|
cd /home/frappe/frappe-bench
|
|
echo -ne "frappe\n${APP_NAME}" >/home/frappe/frappe-bench/sites/apps.txt
|
|
|
|
mkdir -p apps
|
|
cd apps
|
|
git clone --depth 1 https://github.com/frappe/frappe -b ${FRAPPE_BRANCH}
|
|
git clone --depth 1 ${APP_REPO} ${BRANCH} ${APP_NAME}
|
|
|
|
echo "Install frappe NodeJS dependencies . . ."
|
|
cd /home/frappe/frappe-bench/apps/frappe
|
|
yarn
|
|
echo "Install ${APP_NAME} NodeJS dependencies . . ."
|
|
cd /home/frappe/frappe-bench/apps/${APP_NAME}
|
|
yarn
|
|
echo "Build browser assets . . ."
|
|
cd /home/frappe/frappe-bench/apps/frappe
|
|
yarn production --app ${APP_NAME}
|
|
echo "Install frappe NodeJS production dependencies . . ."
|
|
cd /home/frappe/frappe-bench/apps/frappe
|
|
yarn install --production=true
|
|
echo "Install ${APP_NAME} NodeJS production dependencies . . ."
|
|
cd /home/frappe/frappe-bench/apps/${APP_NAME}
|
|
yarn install --production=true
|
|
|
|
mkdir -p /home/frappe/frappe-bench/sites/assets/${APP_NAME}
|
|
cp -R /home/frappe/frappe-bench/apps/${APP_NAME}/${APP_NAME}/public/* /home/frappe/frappe-bench/sites/assets/${APP_NAME}
|
|
|
|
# Add frappe and all the apps available under in frappe-bench here
|
|
echo "rsync -a --delete /var/www/html/assets/frappe /assets" >/rsync
|
|
echo "rsync -a --delete /var/www/html/assets/${APP_NAME} /assets" >>/rsync
|
|
chmod +x /rsync
|
|
|
|
rm /home/frappe/frappe-bench/sites/apps.txt
|