0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-06 14:50:20 -05:00
penpot/manage.sh

272 lines
7.3 KiB
Bash
Raw Normal View History

2016-11-20 14:08:24 -05:00
#!/usr/bin/env bash
set -e
2016-11-20 14:08:24 -05:00
REV=`git log -n 1 --pretty=format:%h -- docker/`
IMGNAME="uxbox_devenv"
2019-02-20 15:24:03 -05:00
2019-07-03 10:49:15 -05:00
function remove-devenv-images {
2019-02-20 15:24:03 -05:00
echo "Clean old development image $IMGNAME..."
2019-07-03 10:49:15 -05:00
docker images $IMGNAME -q | awk '{print $3}' | xargs --no-run-if-empty docker rmi
2016-11-20 14:08:24 -05:00
}
function build-devenv {
echo "Building development image $IMGNAME:latest with UID $EXTERNAL_UID..."
local EXTERNAL_UID=${1:-$(id -u)}
2019-11-22 12:09:13 -05:00
docker-compose -p uxbox-devenv -f docker/devenv/docker-compose.yaml \
build --build-arg EXTERNAL_UID=$EXTERNAL_UID --force-rm;
2016-11-20 14:08:24 -05:00
}
function build-devenv-if-not-exists {
if [[ ! $(docker images $IMGNAME:latest -q) ]]; then
build-devenv $@
2016-11-20 14:08:24 -05:00
fi
2019-07-03 10:49:15 -05:00
}
function start-devenv {
build-devenv-if-not-exists $@;
2019-11-22 12:09:13 -05:00
docker-compose -p uxbox-devenv -f docker/devenv/docker-compose.yaml up -d;
}
2016-11-20 14:08:24 -05:00
function stop-devenv {
2019-11-22 12:09:13 -05:00
docker-compose -p uxbox-devenv -f docker/devenv/docker-compose.yaml stop -t 2;
}
function run-devenv {
2019-11-22 12:09:13 -05:00
if [[ ! $(docker ps -f "name=uxbox-devenv-main" -q) ]]; then
start-devenv
fi
2019-02-20 15:24:03 -05:00
2019-11-22 12:09:13 -05:00
docker exec -ti uxbox-devenv-main /home/uxbox/start.sh;
2016-11-20 14:08:24 -05:00
}
2019-06-24 12:38:51 -05:00
function run-all-tests {
echo "Testing frontend..."
run-frontend-tests $@ || exit 1;
echo "Testing backend..."
run-backend-tests $@ || exit 1;
}
2019-06-24 12:38:51 -05:00
function run-frontend-tests {
build-devenv-if-not-exists $@;
2019-07-03 10:49:15 -05:00
CONTAINER=$IMGNAME:latest
echo "Running development image $CONTAINER to test backend..."
docker run -ti --rm \
-w /home/uxbox/uxbox/frontend \
-v `pwd`:/home/uxbox/uxbox \
-v $HOME/.m2:/home/uxbox/.m2 \
$CONTAINER ./scripts/build-and-run-tests.sh
}
2019-06-24 12:38:51 -05:00
function run-backend-tests {
build-devenv-if-not-exists $@;
2019-06-24 12:38:51 -05:00
CONTAINER=$IMGNAME:latest
docker run -ti --rm \
-w /home/uxbox/uxbox/backend \
-v `pwd`:/home/uxbox/uxbox \
-v $HOME/.m2:/home/uxbox/.m2 \
$CONTAINER ./scripts/run-tests-in-docker.sh
}
function build-frontend-local {
2019-10-22 07:03:07 -05:00
build-devenv-if-not-exists;
mkdir -p $HOME/.m2
rm -rf ./frontend/node_modules
CONTAINER=$IMGNAME:latest;
BUILD_TYPE=$1;
echo "Running development image $CONTAINER to build frontend $BUILD_TYPE ..."
docker run -ti --rm \
-w /home/uxbox/uxbox/frontend \
-v `pwd`:/home/uxbox/uxbox \
-v $HOME/.m2:/home/uxbox/.m2 \
-e UXBOX_API_URL="/api" \
-e UXBOX_VIEW_URL="/view" \
$CONTAINER ./scripts/build-$BUILD_TYPE.sh
}
function build-frontend-image {
build-frontend-local "dist" || exit 1;
2019-07-04 04:56:52 -05:00
rm -rf docker/frontend/dist || exit 1;
cp -vr frontend/dist docker/frontend/ || exit 1;
2019-07-03 10:49:15 -05:00
docker build --rm=true \
-t uxbox-frontend:$REV \
-t uxbox-frontend:latest \
2019-07-04 04:56:52 -05:00
docker/frontend/;
2019-07-03 10:49:15 -05:00
2019-07-04 04:56:52 -05:00
rm -rf docker/frontend/dist || exit 1;
}
function build-frontend-dbg-image {
build-frontend-local "dbg-dist" || exit 1;
2019-07-04 04:56:52 -05:00
rm -rf docker/frontend/dist || exit 1;
cp -vr frontend/dist docker/frontend/ || exit 1;
docker build --rm=true \
-t uxbox-frontend-dbg:$REV \
-t uxbox-frontend-dbg:latest \
2019-07-04 04:56:52 -05:00
docker/frontend/;
2019-07-04 04:56:52 -05:00
rm -rf docker/frontend/dist || exit 1;
}
function build-backend-local {
2019-07-04 04:56:52 -05:00
echo "Prepare backend dist..."
2019-06-24 12:38:51 -05:00
2019-07-03 10:49:15 -05:00
rm -rf ./backend/dist
rsync -ar \
2019-06-24 12:38:51 -05:00
--exclude="/test" \
--exclude="/resources/public/media" \
--exclude="/target" \
--exclude="/scripts" \
--exclude="/.*" \
./backend/ ./backend/dist/
}
function build-backend-image {
build-backend-local || exit 1;
2019-07-04 04:56:52 -05:00
rm -rf docker/backend/dist || exit 1;
cp -vr backend/dist docker/backend/ || exit 1;
2019-07-03 10:49:15 -05:00
docker build --rm=true \
-t uxbox-backend:$REV \
-t uxbox-backend:latest \
2019-07-04 04:56:52 -05:00
docker/backend/;
2019-07-03 10:49:15 -05:00
2019-07-04 04:56:52 -05:00
rm -rf docker/backend/dist || exit 1;
}
function build-images {
build-devenv-if-not-exists $@;
echo "Building frontend image ..."
build-frontend-image || exit 1;
echo "Building frontend dbg image ..."
build-frontend-dbg-image || exit 1;
echo "Building backend image ..."
build-backend-image || exit 1;
}
function run {
if [[ ! $(docker images uxbox-backend:latest) ]]; then
build-backend-image
fi
if [[ ! $(docker images uxbox-frontend:latest) ]]; then
build-frontend-image
2019-07-03 10:49:15 -05:00
fi
if [[ ! $(docker images uxbox-frontend-dbg:latest) ]]; then
build-frontend-dbg-image
fi
echo "Running images..."
2019-07-04 04:56:52 -05:00
docker-compose -p uxbox -f ./docker/docker-compose.yml up -d
2019-07-04 03:41:32 -05:00
}
function log {
docker-compose -p uxbox -f docker/docker-compose.yml logs -f --tail=50
}
2019-07-04 03:41:32 -05:00
function stop {
echo "Stoping containers..."
2019-07-04 04:56:52 -05:00
docker-compose -p uxbox -f ./docker/docker-compose.yml stop
}
2016-11-20 14:08:24 -05:00
function usage {
echo "UXBOX build & release manager v$REV"
echo "USAGE: $0 OPTION"
2019-05-15 17:48:09 -05:00
echo "Options:"
2019-07-04 04:56:52 -05:00
echo "- clean Stop and clean up docker containers"
echo ""
echo "- build-devenv Build docker development oriented image; (can specify external user id in parameter)"
echo "- start-devenv Start the development oriented docker-compose service."
echo "- stop-devenv Stops the development oriented docker-compose service."
echo "- run-devenv Attaches to the running devenv container and starts development environment"
echo " based on tmux (frontend at localhost:3449, backend at localhost:6060)."
echo ""
echo "- run-all-tests Execute unit tests for both backend and frontend."
echo "- run-frontend-tests Execute unit tests for frontend only."
echo "- run-backend-tests Execute unit tests for backend only."
echo ""
2019-07-04 04:56:52 -05:00
echo "- build-images Build a 'release ready' docker images for both backend and frontend"
echo "- build-frontend-image Build a 'release ready' docker image for frontend (debug version)"
echo "- build-frontend-dbg-image Build a debug docker image for frontend"
echo "- build-backend-image Build a 'release ready' docker images for backend"
echo "- log Attach to docker logs."
2019-07-04 04:56:52 -05:00
echo "- run Run 'production ready' docker compose"
echo "- stop Stop 'production ready' docker compose"
2016-11-20 14:08:24 -05:00
}
case $1 in
2019-02-20 15:24:03 -05:00
clean)
2019-07-03 10:49:15 -05:00
remove-devenv-images
2019-02-20 15:24:03 -05:00
;;
## devenv related commands
build-devenv)
build-devenv ${@:2}
;;
start-devenv)
start-devenv ${@:2}
2016-11-20 14:08:24 -05:00
;;
run-devenv)
run-devenv ${@:2}
;;
stop-devenv)
stop-devenv ${@:2}
;;
## testin related commands
2019-06-24 12:38:51 -05:00
run-all-tests)
run-all-tests ${@:2}
;;
2019-06-24 12:38:51 -05:00
run-frontend-tests)
run-frontend-tests ${@:2}
;;
2019-06-24 12:38:51 -05:00
run-backend-tests)
run-backend-tests ${@:2}
;;
# production related comands
build-images)
build-images
;;
build-frontend-dbg-image)
build-frontend-dbg-image
;;
build-frontend-image)
build-frontend-image
;;
build-backend-image)
build-backend-image
;;
2019-07-04 03:41:32 -05:00
run)
run
;;
2019-08-08 14:24:43 -05:00
log)
log
;;
2019-08-08 14:24:43 -05:00
2019-07-04 03:41:32 -05:00
stop)
stop
;;
2016-11-20 14:08:24 -05:00
*)
usage
;;
esac