0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-09 21:41:23 -05:00

🐛 Ensure frontend css folders exists

Signed-off-by: mathieu.brunot <mathieu.brunot@monogramm.io>
This commit is contained in:
mathieu.brunot 2019-06-19 16:42:32 +02:00
parent 95fa00e4fc
commit 2183c37373
No known key found for this signature in database
GPG key ID: 81584BEAF692D7E0

View file

@ -34,6 +34,9 @@ function run-devenv {
mkdir -p $HOME/.m2
rm -rf ./frontend/node_modules
mkdir -p \
./frontend/resources/public/css \
./frontend/resources/public/view/css
CONTAINER=$IMGNAME:latest
@ -132,10 +135,9 @@ function usage {
echo "- clean Stop and clean up docker containers"
echo "- build-devenv Build docker container for development with tmux"
echo "- run-devenv Run (and build if necessary) development container (frontend at localhost:3449, backend at localhost:6060)"
# TODO Add unit test command(s)
#echo "- test Execute unit tests for both backend and frontend"
#echo "- test-frontend Execute unit tests for frontend only"
#echo "- test-backend Execute unit tests for backend only"
echo "- test Execute unit tests for both backend and frontend"
echo "- test-frontend Execute unit tests for frontend only"
echo "- test-backend Execute unit tests for backend only"
echo "- build-release Build 'production ready' docker images for both backend and frontend"
echo "- build-release-frontend Build a 'production ready' docker images for frontend only"
echo "- build-release-backend Build a 'production ready' docker images for backend only"
@ -153,6 +155,15 @@ case $1 in
run-devenv)
run-devenv
;;
test)
test
;;
test-frontend)
test-frontend
;;
test-backend)
test-backend
;;
build-release)
build-release
;;